gallery_page.html 562 B

12345678910111213141516171819
  1. {% extends "base.html" %}
  2. {% load wagtailimages_tags gallery_tags %}
  3. {% block content %}
  4. {% include "base/include/header-hero.html" %}
  5. <div class="container gallery__container">
  6. <div class="row">
  7. <div class="col-md-8">
  8. {% if page.introduction %}
  9. <p class="gallery__introduction">{{ page.introduction }}</p>
  10. {% endif %}
  11. </div>
  12. </div>
  13. <div class="gallery__grid">
  14. {% gallery page.collection %}
  15. </div>
  16. </div>
  17. {% endblock content %}