Files
mjwilson.org/templates/post.html

11 lines
337 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
{% if page.date %}<p class="subtitle"><strong>Created: {{ page.date }}</strong></p>{% endif %}
{% if page.updated %}<p class="subtitle"><strong>Modified: {{ page.updated }}</strong></p>{% endif %}
{{ page.content | safe }}
{% endblock content %}