9 lines
No EOL
261 B
HTML
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 %}   Updated {{page.updated}}{% endif %}</p>
|
|
{{ page.content | safe }}
|
|
{% endblock content %} |