2013-06-05 15:25:27 -04:00
|
|
|
%li
|
2013-07-18 06:21:56 -04:00
|
|
|
%h4.snippet-title
|
2013-06-05 15:25:27 -04:00
|
|
|
= link_to reliable_snippet_path(snippet) do
|
2013-07-18 06:21:56 -04:00
|
|
|
= truncate(snippet.title, length: 60)
|
|
|
|
%span.cgray.monospace.tiny.pull-right
|
2013-06-05 15:25:27 -04:00
|
|
|
= snippet.file_name
|
|
|
|
|
|
|
|
%small.pull-right.cgray
|
|
|
|
Expires:
|
|
|
|
- if snippet.expires_at
|
|
|
|
= snippet.expires_at.to_date.to_s(:short)
|
|
|
|
- else
|
|
|
|
Never
|
|
|
|
|
2013-07-18 06:21:56 -04:00
|
|
|
.snippet-info
|
2013-06-05 15:25:27 -04:00
|
|
|
= "##{snippet.id}"
|
2013-07-18 06:21:56 -04:00
|
|
|
%span
|
2013-06-05 15:25:27 -04:00
|
|
|
by
|
2013-10-06 14:13:56 -04:00
|
|
|
= image_tag avatar_icon(snippet.author_email), class: "avatar avatar-inline s16"
|
2013-06-05 15:25:27 -04:00
|
|
|
= snippet.author_name
|
2013-12-13 16:31:23 -05:00
|
|
|
%span.light
|
|
|
|
#{time_ago_with_tooltip(snippet.created_at)} ago
|