edgarluque.com/templates/blog-page.html
2021-12-23 17:38:19 +01:00

9 lines
197 B
HTML

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