{% extends "base.html" %} {% load i18n wagtailcore_tags wagtailimages_tags %} {% block body_class %}template-{{ self.get_verbose_name|slugify }}{% endblock %} {% block content %} {% if articles|length is 1 %}
{% for page in articles %} {% include 'home/page_content.html' %} {% endfor %}
{% else %} {% if page.header_image %} {% image page.header_image fill-1908x400 as img %} {% endif %}

{{ page.trans_title }}

{{ page.trans_intro|richtext }}

{% if page.subscribe_action %} {% include 'home/subscription_form.html' %} {% endif %}
{% for entry in articles %}

{{ entry.trans_title }}

{{ entry.trans_intro|richtext }}
{% endfor %}
{% endif %} {% if subcategories %}
{% for block in subcategories %} {% endfor %}
{% endif %} {% endblock %}