2015-08-10 11:05:06 +02:00
|
|
|
%html
|
|
|
|
%head
|
|
|
|
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
2016-11-08 10:57:15 +01:00
|
|
|
%title
|
|
|
|
=t('dynamics.page_title')
|
2015-11-30 14:48:37 +01:00
|
|
|
%meta{'http-equiv' => "X-UA-Compatible", :content => "IE=edge"}
|
2016-01-20 15:50:28 +01:00
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
|
|
|
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
2016-11-15 14:10:43 +01:00
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
= csrf_meta_tags
|
|
|
|
%body
|
2016-11-30 11:04:50 +01:00
|
|
|
#beta{class:(Rails.env == 'production' ? '' : 'beta_staging')}
|
|
|
|
- if Rails.env == 'production'
|
|
|
|
Beta
|
|
|
|
- else
|
|
|
|
Env Test
|
|
|
|
|
2016-08-01 18:10:32 +02:00
|
|
|
- if Rails.env == 'test'
|
|
|
|
%script{type: 'text/javascript'}
|
|
|
|
(typeof jQuery !== 'undefined') && (jQuery.fx.off = true);
|
|
|
|
|
2016-08-30 11:42:33 +02:00
|
|
|
="<!--[if lt IE 10]>".html_safe
|
|
|
|
|
|
|
|
= render partial: 'layouts/ie_lt_10'
|
|
|
|
|
|
|
|
="<![endif]-->".html_safe
|
|
|
|
|
2016-01-28 17:16:37 +01:00
|
|
|
%div#wrap
|
2016-11-21 14:19:15 +01:00
|
|
|
%div.row
|
2016-11-21 14:12:59 +01:00
|
|
|
%div#header.navbar
|
2016-11-21 14:19:15 +01:00
|
|
|
= render partial: "layouts/navbar"
|
2016-11-21 16:13:19 +01:00
|
|
|
%div.row.no-margin
|
2016-12-01 12:19:22 +01:00
|
|
|
- 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'
|
|
|
|
|
2016-11-28 10:15:11 +01:00
|
|
|
= render partial: @left_pannel_url
|
2016-12-01 12:19:22 +01:00
|
|
|
- main_container_size = 10
|
|
|
|
- else
|
|
|
|
- main_container_size = 12
|
|
|
|
|
|
|
|
=render partial: 'layouts/main_container', locals: {main_container_size: main_container_size}
|
2016-11-29 09:56:11 +01:00
|
|
|
#mask_search
|
|
|
|
%h1
|
|
|
|
%i.fa.fa-times{style:'position: fixed; top: 10; right: 30; color: white;'}
|
2016-12-01 12:19:22 +01:00
|
|
|
|
2016-12-01 18:35:51 +01:00
|
|
|
- if user_signed_in? && gestionnaire_signed_in?
|
|
|
|
= render partial: 'layouts/switch_devise_profile_module'
|
|
|
|
|
2016-12-01 12:19:22 +01:00
|
|
|
= render partial: 'layouts/footer', locals: {main_container_size: main_container_size}
|
2016-11-17 12:30:39 +01:00
|
|
|
= render partial: 'layouts/google_analytics'
|