blog/templates/post.html

13 lines
286 B
HTML
Raw Normal View History

2025-03-27 16:03:55 +01:00
{% extends "base.html" %}
{% block content %}
<article>
<section class=title>
<h1 class=title>{{ page.title }}</h1>
<p class=subtitle>{{ page.date }}</p>
</section>
<section>
{{ page.content | safe }}
</section>
</article>
2025-03-27 16:03:55 +01:00
{% endblock content %}