You are here

views-photo-grid-style.html.twig in Views Photo Grid 8

Template for the Photo Grid style.

  • $items contains an array of images to display.

File

templates/views-photo-grid-style.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Template for the Photo Grid style.
  5. *
  6. * - $items contains an array of images to display.
  7. *
  8. */
  9. #}
  10. {% if title %}
  11. <h3>{{ title }}</h3>
  12. {% endif %}
  13. <div class="views-photo-grid-container">
  14. {% for item in items %}
  15. <div class="views-photo-grid-item">{{ item }}</div>
  16. {% endfor %}
  17. </div>