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

_sidebar.html.haml « wikis « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cddf19fbc8ee2266c364fe5e161aad06e83f06e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%aside.right-sidebar.right-sidebar-expanded.wiki-sidebar.js-wiki-sidebar.js-right-sidebar{ data: { "offset-top" => "50", "spy" => "affix" } }
  .sidebar-container
    .block.wiki-sidebar-header.gl-mb-3.w-100
      %a.gutter-toggle.float-right.d-block.d-sm-block.d-md-none.js-sidebar-wiki-toggle{ href: "#" }
        = sprite_icon('chevron-double-lg-right', size: 16, css_class: 'gl-icon')

      - git_access_url = wiki_path(@wiki, action: :git_access)
      = link_to git_access_url, class: active_nav_link?(path: 'wikis#git_access') ? 'active' : '', data: { qa_selector: 'clone_repository_link' } do
        = sprite_icon('download', size: 16, css_class: 'gl-mr-2')
        %span= _("Clone repository")

    .blocks-container
      .block.block-first.w-100
        - if @sidebar_page
          = render_wiki_content(@sidebar_page)
        - else
          %ul.wiki-pages
            = render @sidebar_wiki_entries, context: 'sidebar'
      .block.w-100
        - if @sidebar_limited
          = link_to wiki_path(@wiki, action: :pages), class: 'btn btn-block', data: { qa_selector: 'view_all_pages_button' } do
            = s_("Wiki|View All Pages")