blob: ed3992650d4a0c741f809ab4f80e49e5cde3c29c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- page_title @snippet.title, "Snippets"
.snippet-holder
= render 'shared/snippets/header'
%article.file-holder.file-holder-no-border.snippet-file-content
.file-title.file-title-clear
= blob_icon 0, @snippet.file_name
= @snippet.file_name
.file-actions.hidden-xs
= clipboard_button(clipboard_target: ".blob-content[data-blob-id='#{@snippet.id}']")
= link_to 'Raw', raw_snippet_path(@snippet), class: "btn btn-sm", target: "_blank"
= render 'shared/snippets/blob'
|