{% extends "base.html" %} {% if page.article_listing is not defined %} {% set ARTICLE_LISTING = False %} {% else %} {% set ARTICLE_LISTING = page.article_listing %} {% if ARTICLE_LISTING and page.article_listing_count is not defined %} {% set ARTICLE_LISTING_COUNT = 8 %} {% else %} {% set ARTICLE_LISTING_COUNT = page.article_listing_count | int %} {% endif %} {% endif -%} {% block title -%} {{ page.title|striptags|breaking_spaces }} — {{ super() }} {%- endblock %} {% block canonical_rel %} {% if page.redirect_url %} {% elif not page.disable_canonical_url %} {% endif %} {% endblock %} {% block head_redirect %} {% if page.redirect_url %} {% endif %} {% 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 page.redirect_url %} {# meta tag for redirect is in base.html template #}

If you are not redirected, please click here:
{{ page.redirect_url }}

{% endif %} {% if articles and ARTICLE_LISTING %} {% for article in articles[:ARTICLE_LISTING_COUNT] %} {% with HEADING_LEVEL = 3 %} {% include 'includes/article_listing.html' %} {% endwith %} {% endfor %}

All blog posts

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

Page: {{ page }}

{% endblock %}