{% load wagtailcore_tags wagtailimages_tags %} {% comment %} preview "tile" for sub/child pages shown on a landing page. Expects either a ContentPage or an EssayPage {% endcomment %}

{{ page.title }}


{# meta section - shown for essay previews #} {% if meta %}
{% if page.authors %} {% include 'pages/snippets/attribution.html' with creators=page.authors %} / {% endif %}
{% endif %}

{{ page.get_description|safe }}

{% if page.featured_image %} {% image page.featured_image fill-320x190 as s %} {% image page.featured_image fill-500x300 as m %} {% image page.featured_image fill-355x210 as l %} {% image page.featured_image fill-640x380 as s_2x %} {% image page.featured_image fill-1000x600 as m_2x %} {% image page.featured_image fill-710x420 as l_2x %} {% endif %}