{% extends "base.html" %} {% load wagtailcore_tags %} {% block body_class %}template-homepage{% endblock %} {% block content %}

{{ page.page_title }}

{{page.tagline}}

{{ page.paragraph }}

{% if page.layout == 'Banner' %}
{% for collection in page.collections %}
Banner image for collection {{collection.label}}
{{collection.manifests.all|length}} volume{{collection.manifests.all|length|pluralize}}
{{ collection.label }}
{% endfor %}
{% endif %} {% if page.layout == 'Grid' %}
{% for collection in page.collections %}
Thumbnail image for collection {{collection.label}}
{{collection.manifests.all|length}} volume{{collection.manifests.all|length|pluralize}}
{{ collection.label }}
{% endfor %}
{% endif %} {% if page.layout == 'List' %}
{% for collection in page.collections %}
Banner image for collection {{collection.label}}

{{ collection.label }}

{{collection.manifests.all|length}} volume{{collection.manifests.all|length|pluralize}}

{{collection.summary|truncatewords_html:50|safe}}

{% endfor %}
{% endif %} {% include "footer.html" %} {% endblock content %}