{% comment %} Configurable item to be put in a list. Support standard Publication or ListItem instance. Options: * item: item to render. Fields: title, summary, cover, url, date, info, css_class * item_date_format: format passed to the date filter instead of default one. If it is an empty string, do not print the date. * item_big_cover: cover should is big instead of thumbnail (width: 600) {% endcomment %} {% load wagtailimages_tags %} {% if item.cover %} {% if item_big_cover %} {% image item.cover max-640x480 class="cover big" height="" width="" %} {% else %} {% image item.cover fill-64x64 class="cover small" %} {% endif %} {% endif %}

{{ item.title }}

{% if item.info %} {{ item.info|safe }} {% endif %} {% if item.summary %}
{{ item.summary }}
{% endif %} {% if not item.show_in_menus and item.date and item_date_format != '' %} {% with date_format=item_date_format|default:'l d F, H:i' %} {% endwith %} {% endif %}
{% if item.extra %}
{% endif %}