gallery.ejs 406 B

123456789101112
  1. <div class="gallery-container">
  2. <% if (item.photos.length){ %>
  3. <% item.photos.forEach(function(photo){ %>
  4. <div class="picture-container">
  5. <a href="#" data-featherlight="<%- config.root %><%- photo %>">
  6. <img src="<%- config.root %><%- photo %>" class="img-thumbnail" />
  7. </a>
  8. </div>
  9. <% }); %>
  10. <% } %>
  11. </div>