locations_index_page.html 449 B

12345678910111213141516
  1. {% extends "base.html" %}
  2. {% load wagtailcore_tags navigation_tags wagtailimages_tags %}
  3. {% block content %}
  4. {% include "base/include/header-index.html" %}
  5. <div class="container">
  6. <div class="location-list-page">
  7. {% for location in locations %}
  8. {% include "includes/card/picture-card.html" with page=location portrait=False %}
  9. {% endfor %}
  10. </div>
  11. </div>
  12. {% endblock content %}