locations_index_page.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. {% extends "base.html" %}
  2. {% load wagtailcore_tags navigation_tags wagtailimages_tags %}
  3. {% block content %}
  4. <div class="container">
  5. <div class="row">
  6. <div class="col-md-12">
  7. <h1>{{ page.title }}</h1>
  8. <p>{{ page.introduction }}</p>
  9. </div>
  10. </div>
  11. </div>
  12. <div class="container">
  13. <div class="row no-gutters">
  14. {% for location in locations %}
  15. <div class="col-md-6 location-list-item">
  16. <a href="{% pageurl location %}">
  17. <h1 class="location-list-title">
  18. {% image location.image fill-660x270-c75 as image %}
  19. <img src="{{ image.url }}" width="{{ image.width }}" height="{{ image.height }}" alt="{{ image.alt }}" class="" />
  20. <span class="title">{{ location.title }}</span>
  21. </h1></a>
  22. <address>{{ location.address }}</address>
  23. <a href="https://google.com/maps/?q={{ location.lat_long }}" class="btn" target="_blank">Map</a>
  24. </div>
  25. {% endfor %}
  26. </div>
  27. </div>
  28. {% endblock content %}