!!! 5
/[if IE 8]
/[if IE 9]
/[if lt IE 10]
%html{lang: I18n.locale, class: 'no-js'}
%head
%title= content_for?(:title) ? "#{yield(:title)} - <%= app_name %>" : '<%= app_name %>'
%meta(http-equiv="content-type" content="text/html" charset="utf-8")
%meta(http-equiv="x-ua-compatible" content="ie=edge,chrome=1")
%meta(name="description" content="<%= app_name %>")
%meta(name="author" content="<%= app_name %>")
%meta{content: 'initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width', name: 'viewport'}
%meta(name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1" media="(device-height: 568px)")
%meta(name='apple-mobile-web-app-capable' content='yes')
%meta(name='apple-mobile-web-app-status-bar-style' content='translucent-black')
%link(rel="shortcut icon" href="/images/favicon.png")
= csrf_meta_tags
/ Stylesheets (Don't change include order)
= stylesheet_link_tag 'hq/application',
'//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css',
'//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css',
media: 'all', 'data-turbolinks-track' => true
/ Javascripts
= javascript_include_tag '//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js',
'hq/application', 'data-turbolinks-track' => true
= yield :head
%body.main
/ Navbar
= render partial: 'layouts/hq/partials/navbar'
#wrapper
/ Sidebar
%section#sidebar
= render partial: 'layouts/hq/partials/dock'
/ Tools
%section#tools
= render partial: 'layouts/hq/partials/breadcrumb'
= render partial: 'layouts/hq/partials/toolbar'
/ Content
#content
= render 'layouts/partials/warnings'
= render partial: 'layouts/partials/messages'
= yield
/ Footer
= render partial: 'layouts/hq/partials/footer'