11 lines
319 B
HTML
11 lines
319 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<a href="{{ get_url(path='@/blog/_index.md') }}"> <- back to posts</a>
|
|
<h1 class="title">
|
|
{{ page.title }}
|
|
</h1>
|
|
<p class="subtitle"><strong>{{ page.date }} - reading time: {{ page.reading_time }} minutes</strong></p>
|
|
{{ page.content | safe }}
|
|
{% endblock content %}
|