22 lines
747 B
Plaintext
22 lines
747 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 %>
|
||
|
<img class="gallery-image"
|
||
|
src="<%= media_item.media_url %>"
|
||
|
alt="<%= media_item.caption %>"/>
|
||
|
<% end %>
|
||
|
</li>
|
||
|
<% end %>
|
||
|
</ul>
|
||
|
</section>
|