{% load wagtailcore_tags wagtailimages_tags core_tags i18n %} {% get_translation self.get_parent_section as section %}
{% if section.image %} {% image section.image width-30 class="section-article__icon-image" %} {% endif %}

{{section.title}}

{% if self.image %} {% image self.image width-320 class="article__bg-image"%} {% endif %}

{{self.title}}

{{self.subtitle}}

{% for block in self.body %} {% if block.block_type == 'heading' %}

{{ block.value }}

{% elif block.block_type == 'image' %} {% image block.value width-320 %} {% elif block.block_type == 'numbered_list' %}
    {% for item in block.value %}
  1. {{ item|handle_markdown }}
  2. {% endfor %}
{% elif block.block_type == 'list' %} {% else %} {{ block }} {% endif %} {% endfor %}
{% include "patterns/basics/articles/related-article-list-with__icon.html" %}