dundo.farm/views/gallery.erb

24 lines
843 B
Plaintext

<section id="gallery">
<ul class="gallery">
<% @media.each do |media_item| %>
<li class="gallery-item"
tabindex="0">
<% if media_item.media_type == 'VIDEO' %>
<video class="gallery-image"
controls>
<source src="<%= media_item.media_url %>"
poster="<%= media_item.thumbnail_url %>"/>
</video>
<% else %>
<a href="<%= media_item.media_url %>">
<img class="gallery-image"
src="<%= media_item.media_url %>"
alt="<%= media_item.caption %>"/>
</a>
<% end %>
</li>
<% end %>
</ul>
</section>