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

_layout.html.haml « help « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc0ac277a482ee1108636a826f4f5d6988eaf5a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
.row
  .col-md-3{:"data-spy" => 'affix'}
    %h3.page-title Help
    %ul.nav.nav-pills.nav-stacked
      - links = {:"Workflow" => help_workflow_path, :"SSH Keys" => help_ssh_path, :"GitLab Markdown" => help_markdown_path, :"Permissions" => help_permissions_path, :"API" => help_api_path, :"Web Hooks" => help_web_hooks_path, :"Rake Tasks" => help_raketasks_path, :"System Hooks" => help_system_hooks_path, :"Public Access" => help_public_access_path, :"Security" => help_security_path}
      - links.each do |title,path|
        %li{class: current_page?(path) ? 'active' : nil}
          = link_to title, path

  .col-md-9.pull-right
    = yield