locations_index_page.html 315 B

123456789101112
  1. {% extends "base.html" %}
  2. {% load wagtailimages_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="{{ location.slug }}">{{ location.title }}</a></div>
  9. {% endfor %}
  10. {% endblock content-body %}