9 lines
216 B
HTML
9 lines
216 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<article>
|
|
<h1>{{ page.title }}</h1>
|
|
<p class="date">{{ page.date }}</p>
|
|
<div class="post-body">
|
|
{{ page.html|safe }} </div>
|
|
</article>
|
|
{% endblock %} |