summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.haml
blob: 935517d49135bf981cc81410858d1f76a02a6623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
!!! 5
%html{ lang: "en", class: "#{page_class}" }
  = render "layouts/head"
  %body{ class: "#{user_application_theme}", data: { page: body_data_page, project: "#{@project.path if @project}", group: "#{@group.path if @group}" } }
    = Gon::Base.render_data

    -# Ideally this would be inside the head, but turbolinks only evaluates page-specific JS in the body.
    = yield :scripts_body_top

    = render "layouts/header/default", title: header_title
    = render 'layouts/page', sidebar: sidebar, nav: nav

    = yield :scripts_body
    = render "layouts/init_auto_complete" if @gfm_form