ada.wf/blog/templates/blog-page.html

9 lines
212 B
HTML
Raw Normal View History

2024-03-03 22:27:28 +01:00
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ page.date }} {{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
{{ page.content | safe }}
{% endblock content %}