locations_index_page.html 1.2 KB

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