{% extends "base.html" %} {% load staticfiles %} {% load cache %} {% load wagtailcore_tags %} {% block extra_head_bottom %} {% endblock extra_head_bottom %} {% block breadcrumbs %}{% endblock %} {% block content %} {% cache 3600 "wagtail-" request.path request.user.is_staff request.user.is_faculty %}

By Topic:

{% for category in page.categories %} {% endfor %}
{% for grid_item in page.grid_items %}
{{ grid_item.title }}

{{ grid_item.summary_text|safe }}

{% if grid_item.tags.count %}

Tags: {% for tag in grid_item.tags.all %}{{ tag }}{% endfor %}

{% endif %}
{% endfor %}
{% for grid_item in page.grid_items %}
{{ grid_item.title }}

{{ grid_item.description_text|safe }}

{% block button_block %} {% for button in grid_item.buttons %} {# Renders 'blocks/button_section.html' #} {{ button }} {% endfor %} {% endblock button_block %}
{% endfor %}
{% endcache %} {% if request.GET.t %} {% endif %} {% endblock content %} {% block extra_footer_js %} {% endblock extra_footer_js %}