{% 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 %}
{% 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' %}
{% 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 %}
{% 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 %}
{% trans "Next up in" %} {{ section.title }}
-
{% if article.get_effective_image %}
{% image article.get_effective_image fill-96x96 as teaser_thumbnail %}
{% endif %}
{% if article.title_highlight %}
{% else %}
{% endif %}
{% if article.subtitle_highlight or article.body_highlight %}
{% if article.subtitle_highlight %}
{{article.subtitle_highlight|smarttruncatechars:28|safe}}
{% elif article.body_highlight %}
{{article.body_highlight|smarttruncatechars:28|safe}}
{% endif %}
{% elif article.subtitle %}
{% if article.title.30 %}
{{ article.subtitle|smarttruncatechars:28|safe}}
{% else %}
{{ article.subtitle|smarttruncatechars:50|safe}}
{% endif %}
{% endif %}
{% get_comment_count for article as comment_count %}
{% if article.is_commenting_enabled %}
{% if comment_count > 0 %}
{% endif %}
{% endif %}
{% load_tags_for_article article as tags %}
{% if tags %}
{% if settings.core.SiteSettings.enable_tag_navigation %}
{#{% include "patterns/basics/article-tags/article-tag_teaser.html" %}#}
{% endif %}
{% endif %}
{% endif %}
{% if self.get_parent_section.enable_recommended_section %}
{% get_recommended_articles self as articles %}
{% if articles %}
{% trans "You might like" %}
{% for article in articles %}
-
{% if article.get_effective_image %}
{% image article.get_effective_image fill-96x96 as teaser_thumbnail %}
{% endif %}
{#{% include "patterns/basics/article-teasers/sp_variations/teaser-title.html" with layouttype="base" %}#}
{% if article.title_highlight %}
{% else %}
{% endif %}
{% if article.subtitle_highlight or article.body_highlight %}
{% if article.subtitle_highlight %}
{{article.subtitle_highlight|smarttruncatechars:28|safe}}
{% elif article.body_highlight %}
{{article.body_highlight|smarttruncatechars:28|safe}}
{% endif %}
{% elif article.subtitle %}
{% if article.title.30 %}
{{ article.subtitle|smarttruncatechars:28|safe}}
{% else %}
{{ article.subtitle|smarttruncatechars:50|safe}}
{% endif %}
{% endif %}
{% if article.is_commenting_enabled %}
{% if comment_count > 0 %}
{% endif %}
{% endif %}
{% load_tags_for_article article as tags %}
{% if tags %}
{% if settings.core.SiteSettings.enable_tag_navigation %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}