{% extends "base.html" %} {% load wagtailimages_tags core_tags %} {% block content %}

{{self.title}}

{#{% include "patterns/basics/articles/article-page_variations/article-body.html" %}#}
{% for block in self.body %} {% if block.block_type == 'heading' %}

{{ block.value }}

{% elif block.block_type == 'image' %} {% image block.value width-320 alt=self.title %} {% elif block.block_type == 'media' %}
{% with block.value as media %} {% include "patterns/components/media/media-player.html" %} {% endwith %}
{% 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 %}
{% endblock %}