mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
16 lines
625 B
Text
16 lines
625 B
Text
<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>
|