blog/templates/post-page.html
2024-08-18 13:23:10 -03:00

11 lines
212 B
HTML

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