Sha256: 02e7ccde2a55a03980c78d0368e0dafd57909f9a639e1782be0cdc8dba742ace
Contents?: true
Size: 668 Bytes
Versions: 15
Compression:
Stored size: 668 Bytes
Contents
<% if photos.any? %> <div class="section images"> <h3 class="section-heading"><%= t(".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
15 entries across 15 versions & 1 rubygems