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

_page.html.haml « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 422966cdc5556d22e1dae102fd17636f3da6e2d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- if defined?(sidebar)
  .page-with-sidebar{ class: nav_sidebar_class }
    = render "layouts/broadcast"
    .sidebar-wrapper
      = render(sidebar)
      .collapse-nav
        = render partial: 'layouts/collapse_button'
    .content-wrapper
      .container-fluid
        .content
          = render "layouts/flash"
          .clearfix
            = yield
- else
  .container.navless-container
    .content
      = yield

= yield :embedded_scripts

:coffeescript
  $('.page-sidebar-collapsed .nav-sidebar a').tooltip placement: "right"