summaryrefslogtreecommitdiff
path: root/app/views/projects/blob/_blob.html.haml
blob: a1ae1397584ea63494c8f788c02d32181c88114a (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
30
31
32
33
34
35
36
37
%ul.breadcrumb.repo-breadcrumb
  %li
    %i.fa.fa-angle-right
    = link_to namespace_project_tree_path(@project.namespace, @project, @ref) do
      = @project.path
  - tree_breadcrumbs(@tree, 6) do |title, path|
    %li
      - if path
        - if path.end_with?(@path)
          = link_to namespace_project_blob_path(@project.namespace, @project, path) do
            %strong
              = truncate(title, length: 40)
        - else
          = link_to truncate(title, length: 40), namespace_project_tree_path(@project.namespace, @project, path)
      - else
        = link_to title, '#'

%ul.blob-commit-info.hidden-xs
  - blob_commit = @repository.last_commit_for_path(@commit.id, blob.path)
  = render blob_commit, project: @project

%div#blob-content-holder.blob-content-holder
  %article.file-holder
    .file-title
      = blob_icon blob.mode, blob.name
      %strong
        = blob.name
      %small
        = number_to_human_size(blob.size)
      .file-actions.hidden-xs
        = render "actions"
    - if blob.text?
      = render "text", blob: blob
    - elsif blob.image?
      = render "image", blob: blob
    - else
      = render "download", blob: blob