2013-07-13 01:45:48 -04:00
|
|
|
%h3.page-title
|
2013-03-24 17:16:52 -04:00
|
|
|
- if @snippet.private?
|
2013-06-24 18:57:26 -04:00
|
|
|
%i{:class => "icon-lock cgreen has_bottom_tooltip", "data-original-title" => "Private snippet"}
|
2013-03-24 17:16:52 -04:00
|
|
|
- else
|
2013-06-24 18:57:26 -04:00
|
|
|
%i{:class => "icon-globe cblue has_bottom_tooltip", "data-original-title" => "Public snippet"}
|
2013-03-24 17:16:52 -04:00
|
|
|
|
2012-02-07 18:00:49 -05:00
|
|
|
= @snippet.title
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2013-06-05 15:25:27 -04:00
|
|
|
%small.pull-right
|
|
|
|
= "##{@snippet.id}"
|
|
|
|
%span.light
|
|
|
|
by
|
|
|
|
= image_tag gravatar_icon(@snippet.author_email), class: "avatar avatar-inline s16"
|
|
|
|
= @snippet.author_name
|
2012-11-25 23:14:05 -05:00
|
|
|
%div= render 'blob'
|