Sha256: 84bb45969b5c2b58d701de79b80662f4ab0c2f508c0bdd3616717d94b1bf58e3
Contents?: true
Size: 668 Bytes
Versions: 5
Compression:
Stored size: 668 Bytes
Contents
<% if photos.any? %> <div class="section images"> <h4 class="section-heading"><%= t(".related_photos") %></h4> <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
5 entries across 5 versions & 1 rubygems