Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_blob.html.haml « blob « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02a327c5a494a019f39643af25991f57f7484da8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
= render "projects/blob/breadcrumb", blob: blob

.info-well.d-none.d-sm-block
  .well-segment
    %ul.blob-commit-info
      = render 'projects/commits/commit', commit: @last_commit, project: @project, ref: @ref

  = render_if_exists 'projects/blob/owners', blob: blob
  = render "projects/blob/auxiliary_viewer", blob: blob

#blob-content-holder.blob-content-holder
  - if @code_navigation_build
    - code_nav_url = raw_project_job_artifacts_url(@project, @code_navigation_build, path: "lsif/#{blob.path}")
    #js-code-navigation{ data: { code_nav_url: "#{code_nav_url}.json", definition_path_prefix: project_blob_path(@project, @ref) } }
  %article.file-holder
    = render 'projects/blob/header', blob: blob
    = render 'projects/blob/content', blob: blob