locations_index_page.html 317 B

123456789101112
  1. {% extends "base.html" %}
  2. {% load wagtailcore_tags %}
  3. {% block content-header %}
  4. {{ page.title }}
  5. {% endblock content-header %}
  6. {% block content-body %}
  7. {% for location in locations %}
  8. <div><a href="{% pageurl location %}">{{ location.title }}</a></div>
  9. {% endfor %}
  10. {% endblock content-body %}