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

19 lines
716 B
Text
Raw Normal View History

2015-04-30 13:06:18 -04:00
- page_title @snippet.title, "Snippets"
2015-10-18 06:54:02 -04:00
= render 'shared/snippets/header'
2015-10-18 06:54:02 -04:00
.project-snippets
%article.file-holder.snippet-file-content
.file-title
= blob_icon 0, @snippet.file_name
= @snippet.file_name
.file-actions
2016-12-07 18:05:42 -05:00
= clipboard_button(clipboard_target: ".blob-content[data-blob-id='#{@snippet.id}']", class: "btn btn-sm")
= link_to 'Raw', raw_namespace_project_snippet_path(@project.namespace, @project, @snippet), class: "btn btn-sm", target: "_blank"
= render 'shared/snippets/blob'
2015-10-18 06:54:02 -04:00
2016-12-07 18:05:42 -05:00
.row-content-block.top-block.content-component-block
= render 'award_emoji/awards_block', awardable: @snippet, inline: true
%div#notes= render "projects/notes/notes_with_form"