<% if uploaded_items_block.files.present? %> <% uploaded_items_block.files.each do |file| %>
<% if file[:link].present? %> <%= link_to file[:link], rel: 'ugc' do %> <%= image_tag file[:url], class: 'img-thumbnail', alt: file[:caption] %> <% end %> <% else %> <%= image_tag file[:url], class: 'img-thumbnail', alt: '', role: 'presentation' %> <% end %> <% if file[:caption].present? %>
<%= file[:caption] %>
<% end %> <% if uploaded_items_block.zpr_link? %> <%= button_tag t('.zpr_link_html', title: file[:caption]), class: 'btn btn-secondary zpr-link', data: { 'iiif-tilesource' => { type: 'image', url: file[:url] }.to_json } %> <% end %>
<% end %> <% end %>
<% if uploaded_items_block.text? %>
<%= content_tag(:h3, uploaded_items_block.title) if uploaded_items_block.title.present? %> <%= sir_trevor_markdown uploaded_items_block.text %>
<% end %>