{% load wagtailcore_tags wagtailimages_tags core_tags i18n %}
{{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__title.html" %}