2
0

locations_index_page.html 471 B

123456789101112131415161718
  1. {% extends "base.html" %}
  2. {% load wagtailcore_tags %}
  3. {% load wagtailimages_tags %}
  4. {% block content-header %}
  5. {% include "base/include/header.html" %}
  6. {% endblock content-header %}
  7. {% block content-body %}
  8. {{ page.introduction }}
  9. {% for location in locations %}
  10. <div>
  11. <a href="{% pageurl location %}">{{ location.title }}</a>
  12. {% image location.image width-150 %}
  13. </div>
  14. {% endfor %}
  15. {% endblock content-body %}