debian-mirror-gitlab/app/views/layouts/application.html.haml

12 lines
602 B
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
!!! 5
2017-09-10 17:25:29 +05:30
%html{ lang: I18n.locale, class: page_class }
2015-09-11 14:41:01 +05:30
= render "layouts/head"
2019-03-02 22:35:43 +05:30
%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 } }
2017-09-10 17:25:29 +05:30
= render "layouts/init_auto_complete" if @gfm_form
2019-03-02 22:35:43 +05:30
= render "layouts/init_client_detection_flags"
2017-09-10 17:25:29 +05:30
= render 'peek/bar'
2019-05-30 16:15:17 +05:30
= render partial: "layouts/header/default", locals: { project: @project, group: @group }
2016-06-02 11:05:42 +05:30
= render 'layouts/page', sidebar: sidebar, nav: nav
2015-09-11 14:41:01 +05:30
= yield :scripts_body