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

application.html.haml « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c38f96f302a5a5e98978d195b4d83229f5dc75db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
!!! 5
%html{ lang: I18n.locale, class: page_class }
  = render "layouts/head"
  %body{ class: "#{user_application_theme} #{@body_class} #{client_class_list}", data: { page: body_data_page, project: "#{@project.path if @project}", group: "#{@group.path if @group}", find_file: find_file_path } }
    = render "layouts/init_auto_complete" if @gfm_form
    = render "layouts/init_client_detection_flags"
    = render 'peek/bar'
    = header_message
    = render partial: "layouts/header/default", locals: { project: @project, group: @group }
    = render 'layouts/page', sidebar: sidebar, nav: nav
    = footer_message

    = render_if_exists "shared/onboarding_guide"

    = yield :scripts_body