locations_index_page.html 419 B

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