summaryrefslogtreecommitdiff
path: root/app/views/projects/blob/_text.html.haml
blob: 7b16d266982a6d394c884f4d602d81e041c73886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- if blob.only_display_raw?
  .file-content.code
    .nothing-here-block
      File too large, you can
      = succeed '.' do
        = link_to 'view the raw file', namespace_project_raw_path(@project.namespace, @project, @id), target: '_blank', rel: 'noopener noreferrer'

- else
  - blob.load_all_data!(@repository)

  - if blob.empty?
    .file-content.code
      .nothing-here-block Empty file
  - else
    - if markup?(blob.name)
      .file-content.wiki
        = render_markup(blob.name, blob.data)
    - else
      = render 'shared/file_highlight', blob: blob, repository: @repository