25 lines
791 B
Plaintext
25 lines
791 B
Plaintext
<%= content_tag(:article, article_attrs) do -%>
|
|
<%= link_to polymorphic_path(link_target, link_params) do -%>
|
|
<%= content_tag(:picture) do -%>
|
|
<%= tag.source media: "(max-width: 660px)", srcset: cropped_url -%>
|
|
<%= tag.source media: "(min-width: 660px)", srcset: preview_url -%>
|
|
<%= tag.img class: "has-cropped-#{has_cropped}", src: preview_url, title: tooltip, alt: alt_text -%>
|
|
<% end -%>
|
|
<% end -%>
|
|
<% if pool -%>
|
|
<p class="desc">
|
|
<%= link_to pool.pretty_name.truncate(80), pool %>
|
|
</p>
|
|
<% end -%>
|
|
<% if similarity -%>
|
|
<p class="desc">
|
|
Similarity: <%= similarity %>
|
|
</p>
|
|
<% end -%>
|
|
<% if size -%>
|
|
<p class="desc">
|
|
<%= number_to_human_size(size) %> (<%= width %>x<%= height %>)
|
|
</p>
|
|
<% end -%>
|
|
<% end -%>
|