summaryrefslogtreecommitdiff
path: root/app/views/shared/snippets/_blob.html.haml
blob: 74f71e6cbd1c40095c1ad13dda978ef303368981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.js-file-title.file-title-flex-parent
  .file-header-content
    = blob_icon @snippet.mode, @snippet.path

    %strong.file-title-name
      = @snippet.path

    = copy_file_path_button(@snippet.path)

  .file-actions.hidden-xs
    .btn-group{ role: "group" }<
      = copy_blob_content_button(@snippet)
      = open_raw_file_button(raw_path)

      - if defined?(download_path) && download_path
        = link_to icon('download'), download_path, class: "btn btn-sm has-tooltip", title: 'Download', data: { container: 'body' }

- if @snippet.content.empty?
  .file-content.code
    .nothing-here-block Empty file
- else
  - if markup?(@snippet.file_name)
    .file-content.wiki
      - if gitlab_markdown?(@snippet.file_name)
        = preserve(markdown_field(@snippet, :content))
      - else
        = render_markup(@snippet.file_name, @snippet.content)
  - else
    = render 'shared/file_highlight', blob: @snippet