This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-29 22:48:09 +00:00
|
|
|
{% set pageTitle = months[post.month]|capitalize + ' ' + post.year %}
|
|
|
|
{% set toRoot = '..' %}
|
|
|
|
|
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2020-02-29 23:49:56 +00:00
|
|
|
{% block head %}
|
|
|
|
<meta property="og:article:published_time" content="{{ publishedDate.toISOString() }}" />
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-02-29 22:48:09 +00:00
|
|
|
{% block body %}
|
|
|
|
<main id="main">
|
|
|
|
<section id="post">
|
|
|
|
{{ post.renderedHTML|safe }}
|
|
|
|
{% include "statistics.html" %}
|
|
|
|
{% include "official-topics.html" %}
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|