blog/templates/post.html

13 lines
286 B
HTML
Raw Normal View History

2025-12-23 22:27:51 +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-12-23 22:27:51 +01:00
{% endblock content %}