15 lines
338 B
HTML
15 lines
338 B
HTML
|
{% set pageTitle = months[post.month]|capitalize + ' ' + post.year %}
|
||
|
{% set toRoot = '..' %}
|
||
|
|
||
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block body %}
|
||
|
<main id="main">
|
||
|
<section id="post">
|
||
|
{{ post.renderedHTML|safe }}
|
||
|
{% include "statistics.html" %}
|
||
|
{% include "official-topics.html" %}
|
||
|
</section>
|
||
|
</main>
|
||
|
{% endblock %}
|