my-website/templates/page.html

10 lines
240 B
HTML
Raw Normal View History

{% extends "base.html" %} {% block content %}
2021-06-14 12:08:22 +02:00
<h3>{{ page.title }}</h3>
<article>
<p>Published on: {{ page.date }}</p>
<div>
{{ page.content | safe }}
</div>
</article>
{% endblock content %}