32 lines
882 B
Text
32 lines
882 B
Text
%ul.breadcrumb
|
|
%li
|
|
%i.icon-angle-right
|
|
= link_to project_tree_path(@project, @ref) do
|
|
= @project.path
|
|
- tree_breadcrumbs(@tree, 6) do |title, path|
|
|
\/
|
|
%li
|
|
- if path
|
|
- if path.end_with?(@path)
|
|
= link_to project_blob_path(@project, path) do
|
|
%span.cblue
|
|
= truncate(title, length: 40)
|
|
- else
|
|
= link_to truncate(title, length: 40), project_tree_path(@project, path)
|
|
- else
|
|
= link_to title, '#'
|
|
|
|
%div#tree-content-holder.tree-content-holder
|
|
.file-holder
|
|
.file-title
|
|
%i.icon-file
|
|
%span.file_name
|
|
= blob.name
|
|
%small= number_to_human_size blob.size
|
|
%span.options= render "actions"
|
|
- if blob.text?
|
|
= render "text", blob: blob
|
|
- elsif blob.image?
|
|
= render "image", blob: blob
|
|
- else
|
|
= render "download", blob: blob
|