{% load wagtailcore_tags wagtailimages_tags core_tags i18n %}
{% get_translation self.get_parent_section as section %}
{% 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 %}
- {{ item|handle_markdown }}
{% endfor %}
{% elif block.block_type == 'list' %}
{% for item in block.value %}
- {{ item|handle_markdown }}
{% endfor %}
{% else %}
{{ block }}
{% endif %}
{% endfor %}
{% include "patterns/basics/articles/related-article-list-with__icon.html" %}