{% load wagtailcore_tags core_tags wagtailimages_tags static comments gem_tags molo_forms_tags %} {% get_translation self.get_parent_section as section %}

{{self.title}}

{% if self.subtitle %}

{{self.subtitle}}

{% endif %} {% get_comment_count for article as comment_count %} {% if article.is_commenting_enabled %} {% if comment_count > 0 %} Comments {{comment_count}} {% trans "comment" %}{{comment_count|pluralize}} {% endif %} {% endif %} {% if self.get_effective_image %} {% image self.get_effective_image fill-360x160 as article_image %} {{ self.title }} {% endif %}
{% 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 %}
{% social_media_article page=self %} {% forms_list_linked_to_pages self %}