notebook/app/views/content/form/images/_gallery.html.erb
2021-05-01 18:57:34 -07:00

13 lines
451 B
Plaintext

<%# todo: some smart resizing for 1-3+ images %>
<%# todo: lightbox on click %>
<div id="gallery_panel" class="panel">
<div class="center">
<% images = content.image_uploads %>
<% images.each do |image| %>
<%= link_to image.src(:original), class: 'z-depth-1 hoverable', target: '_new' do %>
<%= image_tag image.src(images.count == 1 ? :hero : :medium), style: 'max-width: 100%' %>
<% end %>
<% end %>
</div>
</div>