9 lines
212 B
HTML
9 lines
212 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1 class="title">
|
||
|
{{ page.date }} {{ page.title }}
|
||
|
</h1>
|
||
|
<p class="subtitle"><strong>{{ page.date }}</strong></p>
|
||
|
{{ page.content | safe }}
|
||
|
{% endblock content %}
|