Sha256: 6cc34bed35625bd917623995493a638fa8663748c0af982ef076060143e62d37
Contents?: true
Size: 694 Bytes
Versions: 31
Compression:
Stored size: 694 Bytes
Contents
<% if photos.any? %> <div class="section images"> <h3 class="section-heading"><%= t("decidim.application.photos.related_photos") %></h3> <div class="gallery row"> <% photos.in_groups_of(3, false).each do |group| %> <% group.each_with_index do |photo, index| %> <div class="columns small-6 medium-4 <%= (index == 2 || photo == group.last ? "end" : "") %>"> <%= link_to photo.big_url, target: "_blank", rel: "noopener" do %> <%= image_tag photo.thumbnail_url, class:"thumbnail", alt: strip_tags(translated_attribute(photo.title)) %> <% end %> </div> <% end %> <% end %> </div> </div> <% end %>
Version data entries
31 entries across 31 versions & 1 rubygems