2013-07-13 01:45:48 -04:00
|
|
|
%h3.page-title
|
2013-07-18 06:08:48 -04:00
|
|
|
= @snippet.title
|
|
|
|
|
2013-03-24 17:16:52 -04:00
|
|
|
- if @snippet.private?
|
2013-07-18 06:08:48 -04:00
|
|
|
%span.label.label-success
|
|
|
|
%i.icon-lock
|
|
|
|
private
|
2013-03-24 17:16:52 -04:00
|
|
|
|
2013-07-18 06:08:48 -04:00
|
|
|
.pull-right
|
2013-08-01 15:35:40 -04:00
|
|
|
= link_to new_snippet_path, class: "btn btn-new btn-small", title: "New Snippet" do
|
2013-07-18 06:08:48 -04:00
|
|
|
Add new snippet
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2013-07-18 06:08:48 -04:00
|
|
|
|
|
|
|
.append-bottom-20
|
|
|
|
.pull-right
|
2013-06-05 15:25:27 -04:00
|
|
|
= "##{@snippet.id}"
|
|
|
|
%span.light
|
|
|
|
by
|
2013-07-18 06:33:43 -04:00
|
|
|
= link_to user_snippets_path(@snippet.author) do
|
2013-10-06 14:13:56 -04:00
|
|
|
= image_tag avatar_icon(@snippet.author_email), class: "avatar avatar-inline s16"
|
2013-07-18 06:33:43 -04:00
|
|
|
= @snippet.author_name
|
2013-07-18 06:08:48 -04:00
|
|
|
|
|
|
|
.back-link
|
|
|
|
- if @snippet.author == current_user
|
|
|
|
= link_to user_snippets_path(current_user) do
|
|
|
|
← my snippets
|
|
|
|
- else
|
|
|
|
= link_to snippets_path do
|
|
|
|
← discover snippets
|
|
|
|
|
2012-11-25 23:14:05 -05:00
|
|
|
%div= render 'blob'
|