blog/templates/blog-page.html
oiseauroch fa0c6f3d64 test
2023-03-31 21:59:07 +02:00

12 lines
226 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
<div class="content">
{{ page.content | safe }}
</div>
{% endblock content %}