my-website/templates/page.html

10 lines
240 B
HTML

{% extends "base.html" %} {% block content %}
<h3>{{ page.title }}</h3>
<article>
<p>Published on: {{ page.date }}</p>
<div>
{{ page.content | safe }}
</div>
</article>
{% endblock content %}