aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/active_storage/blobs/_blob.html.erb
blob: c7c70c110e26ae931b17c6c8c3518a77534b73fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<figure class="attachment attachment--<%= blob.representable? ? "preview" : "file" %> attachment--<%= blob.filename.extension %>">
  <% if blob.variable? %>
    <%= image_tag blob.variant(resize: "1024x768>") %>
  <% elsif blob.previewable? %>
    <%= image_tag blob.preview(resize: "1024x768>") %>
  <% end %>

  <figcaption class="attachment__caption">
    <% if caption = blob.try(:caption) %>
      <%= caption %>
    <% else %>
      <span class="attachment__name"><%= blob.filename %></span>
      <span class="attachment__size"><%= number_to_human_size blob.byte_size %></span>
    <% end %>
  </figcaption>
</figure>