2
0

locations_index_page.html 367 B

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