Sha256: b3e9d56b2876fffddf6e59e06ff122b34f027f9637f5f8518a48cdb1af9f5c71
Contents?: true
Size: 657 Bytes
Versions: 22
Compression:
Stored size: 657 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" do %> <%= image_tag photo.thumbnail_url, class:"thumbnail", alt: strip_tags(translated_attribute(photo.description)) %> <% end %> </div> <% end %> <% end %> </div> </div> <% end %>
Version data entries
22 entries across 22 versions & 1 rubygems