{% extends "base.html" %} {% if page.article_listing is not defined %} {% set ARTICLE_LISTING = False %} {% else %} {% set ARTICLE_LISTING = page.article_listing %} {% endif -%} {% block title -%} {{ page.title|striptags|breaking_spaces }} — {{ super() }} {%- endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %}
{% if page.image %} {{ page.title|striptags }} {% endif %}

{{ page.title }}

{% import 'includes/translations.html' as translations with context %} {{ translations.translations_for(page) }} {% if PDF_PROCESSOR %} get the pdf {% endif %}
{{ page.content }} {% if articles and ARTICLE_LISTING %} {% for article in articles %} {% with HEADING_LEVEL=3 %} {% include 'includes/article_listing.html' %} {% endwith %} {% endfor %}

Click to see every post in a big list

{% endif %} {% if ADAM_FOOTER %} {{ ADAM_FOOTER }} {% endif %} {{ page.footer }}
{% endblock %}