WesternFriend/WF-website

View on GitHub
wf_pages/templates/wf_pages/wf_page_collection_index_page.html

Summary

Maintainability
Test Coverage
{% extends "base.html" %}
{% load wagtailcore_tags %}

{% block content %}
    <h1>{{ page.title }}</h1>

    {{ page.intro | richtext }}

    {% if collections.count %}
        <ul>
            {% for collection in collections.all %}
                <li>
                    <a href="{% pageurl collection %}">
                        {{ collection }}
                    </a>
                </li>
            {% endfor %}
        </ul>
    {% endif %}
{% endblock content %}