13 lines
No EOL
286 B
HTML
13 lines
No EOL
286 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<section class=title>
|
|
<h1 class=title>{{ page.title }}</h1>
|
|
<p class=subtitle>{{ page.date }}</p>
|
|
</section>
|
|
<section>
|
|
{{ page.content | safe }}
|
|
</section>
|
|
</article>
|
|
{% endblock content %} |