for easier extension/customization/overriding of templates
{{ M_ARCHIVED_ARTICLE_BADGE|render_rst|replace('{year}', article.date.year)|indent(8) }}
{% endif %}
<!-- content -->
+{% block article_content %}
{{ article.content|trim }}
+{% endblock %}
<!-- /content -->
{% if article.category.badge or (article.author and article.author.badge) %}
{{ badges()|rtrim|indent(10) }}
{% endif %}
{% if article.content %}
<!-- content -->
+{% block article_content %}
{{ article.content|trim }}
+{% endblock %}
<!-- /content -->
{% endif %}
{% if article.category.badge or (article.author and article.author.badge) %}
{% endif %}
{% if page.content %}
<!-- content -->
+{% block page_content %}
{{ page.content|trim }}
+{% endblock %}
<!-- /content -->
{% endif %}
</div>
{% endif %}
</head>
<body>
+{% block page_content %}
{{- page.content -}}
+{% endblock %}
</body>
</html>