51 lines
1.6 KiB
Text
51 lines
1.6 KiB
Text
%html
|
|
%head
|
|
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
|
%title
|
|
=t('dynamics.page_title')
|
|
%meta{'http-equiv' => "X-UA-Compatible", :content => "IE=edge"}
|
|
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
|
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
|
|
|
= csrf_meta_tags
|
|
%body
|
|
#beta{class:(Rails.env == 'production' ? '' : 'beta_staging')}
|
|
- if Rails.env == 'production'
|
|
Beta
|
|
- else
|
|
Env Test
|
|
|
|
- if Rails.env == 'test'
|
|
%script{type: 'text/javascript'}
|
|
(typeof jQuery !== 'undefined') && (jQuery.fx.off = true);
|
|
|
|
="<!--[if lt IE 10]>".html_safe
|
|
|
|
= render partial: 'layouts/ie_lt_10'
|
|
|
|
="<![endif]-->".html_safe
|
|
|
|
%div#wrap
|
|
%div.row
|
|
%div#header.navbar
|
|
= render partial: "layouts/navbar"
|
|
%div.row.no-margin
|
|
- if RenderPartialService.left_panel_exist? @left_pannel_url
|
|
%div.col-lg-2.col-md-2#left-pannel
|
|
- if gestionnaire_signed_in?
|
|
#search-block
|
|
= render partial: 'layouts/left_panels/search_area'
|
|
|
|
= render partial: @left_pannel_url
|
|
- main_container_size = 10
|
|
- else
|
|
- main_container_size = 12
|
|
|
|
=render partial: 'layouts/main_container', locals: {main_container_size: main_container_size}
|
|
#mask_search
|
|
%h1
|
|
%i.fa.fa-times{style:'position: fixed; top: 10; right: 30; color: white;'}
|
|
|
|
= render partial: 'layouts/footer', locals: {main_container_size: main_container_size}
|
|
= render partial: 'layouts/google_analytics'
|