gitlab-org--gitlab-foss/app/views/snippets/show.html.haml

16 lines
477 B
Plaintext
Raw Normal View History

%h3.page-title
- if @snippet.private?
%i{:class => "icon-lock cgreen has_bottom_tooltip", "data-original-title" => "Private snippet"}
- else
%i{:class => "icon-globe cblue has_bottom_tooltip", "data-original-title" => "Public snippet"}
= @snippet.title
2011-10-16 21:07:10 +00:00
2013-06-05 19:25:27 +00:00
%small.pull-right
= "##{@snippet.id}"
%span.light
by
= image_tag gravatar_icon(@snippet.author_email), class: "avatar avatar-inline s16"
= @snippet.author_name
%div= render 'blob'