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

_blob.html.haml « search « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39e711707066660dbea83af3896df464d4b8b683 (plain)
1
2
3
4
5
6
7
8
9
10
%li
  .file_holder
    .file_title
      = link_to project_blob_path(@project, tree_join(blob.ref, blob.filename), :anchor => "L" + blob.startline.to_s) do
        %i.icon-file
        %strong
          = blob.filename
    .file_content.code.term
      %div{class: user_color_scheme_class}
        = raw blob.colorize( formatter: :gitlab, options: { first_line_number: blob.startline } )