{% extends "base.html" %} {% load wagtailsettings_tags wagtailcore_tags core_tags wagtailimages_tags static comments gem_tags molo_forms_tags %} {% block content %}
{% get_translation self.get_parent_section as section %}

{{self.title}}

{% if self.subtitle %}

{{self.subtitle}}

{% endif %} {% get_comment_count for self as comment_count %} {% if self.is_commenting_enabled %} {% if comment_count > 0 %} {% trans "Your thoughts" %} ({{comment_count}}) {% 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 %}
{% load_tags_for_article self as tags %} {% if settings.core.SiteSettings.enable_clickable_tags %} {% endif %} {% forms_list_for_pages page=self %} {% forms_list_linked_to_pages self %} {% social_media_article page=self %} {#{% include "patterns/basics/article-tags/sp_article-page-tag.html" %}#} {% if settings.core.SiteSettings.enable_tag_navigation %} {% if tags %}
{% endif %} {% endif %} {% include "comments/comment_block.html" %} {#{% include "patterns/basics/articles/sp_variations/related-article-teasers_up-next.html" %}#} {#{% include "patterns/basics/articles/sp_variations/related-article-teasers_might-like.html" %}#} {% get_translation self.get_parent_section as section %} {% get_next_article self as article %} {% if article and self.get_parent_section.enable_next_section %}
{% endif %} {% if self.get_parent_section.enable_recommended_section %} {% get_recommended_articles self as articles %} {% if articles %}
{% endif %} {% endif %}
{% endblock %}