10 lines
217 B
HTML
10 lines
217 B
HTML
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="post">
|
||
|
{{ post::header(page=page) }}
|
||
|
{{ post::content(page=page, summary=false) }}
|
||
|
{{ post::postview(page=page) }}
|
||
|
</div>
|
||
|
{% endblock content %}
|