mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
13 lines
451 B
Plaintext
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> |