{% set pageTitle = months[post.month]|capitalize + ' ' + post.year %}
{% set toRoot = '..' %}

{% extends "base.html" %}

{% block head %}
  <meta property="og:article:published_time" content="{{ publishedDate.toISOString() }}" />
{% endblock %}

{% block body %}
  <main id="main">
    <section id="post">
      {{ post.renderedHTML|safe }}
      {% include "statistics.html" %}
      {% include "official-topics.html" %}
    </section>
  </main>
{% endblock %}