website/templates/post.html
2024-11-12 22:09:20 -07:00

9 lines
No EOL
261 B
HTML

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