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