{% extends 'base_content_page.html' %} {% load wagtailimages_tags wagtailcore_tags static i18n %} {% comment %} Featured article variant - Larger images, enhanced typography, special styling for featured content {% endcomment %} {% block page_content %}
Featured Article

{{ page.title }}

{{ page.intro | richtext }}
{% if page.image %} {% image page.image format-jpeg width-800 as page_image_1x_jpg %} {% image page.image format-jpeg width-1600 as page_image_2x_jpg %} {% image page.image format-webp width-800 as page_image_1x_webp %} {% image page.image format-webp width-1600 as page_image_2x_webp %}
{{ page.image.alt }} {% if page.image.caption %}
{{ page.image.caption }}
{% endif %}
{% endif %}
{% include_block page.body %}
{% if page.show_toc %} {% endif %}
{% endblock page_content %} {% block extra_js %} {% if page.show_toc %} {% endif %} {% endblock %}