2015-08-10 11:05:06 +02:00
|
|
|
%html
|
|
|
|
%head
|
2017-04-06 19:10:25 +02:00
|
|
|
%meta{ :content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type" }/
|
2017-03-30 17:54:43 +02:00
|
|
|
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
|
2016-11-08 10:57:15 +01:00
|
|
|
%title
|
2017-04-06 11:38:44 +02:00
|
|
|
= t('dynamics.page_title')
|
2017-04-06 19:10:25 +02:00
|
|
|
%meta{ 'http-equiv' => "X-UA-Compatible", :content => "IE=edge" }
|
2016-01-20 15:50:28 +01:00
|
|
|
|
2017-04-17 19:32:26 +02:00
|
|
|
= favicon_link_tag(image_url("favicons/16x16.png"), type: "image/png", sizes: "16x16")
|
|
|
|
= favicon_link_tag(image_url("favicons/32x32.png"), type: "image/png", sizes: "32x32")
|
|
|
|
= favicon_link_tag(image_url("favicons/96x96.png"), type: "image/png", sizes: "96x96")
|
|
|
|
|
2018-07-12 11:50:47 +02:00
|
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': "reload"
|
|
|
|
= stylesheet_link_tag 'print', media: 'print', 'data-turbolinks-track': "reload"
|
|
|
|
= javascript_pack_tag 'application-old', defer: true, 'data-turbolinks-track': 'reload'
|
|
|
|
= javascript_include_tag 'application', defer: true, 'data-turbolinks-track': 'reload'
|
2015-08-10 11:05:06 +02:00
|
|
|
= csrf_meta_tags
|
2018-07-12 11:50:47 +02:00
|
|
|
|
|
|
|
:javascript
|
|
|
|
DATA = [];
|
2015-08-10 11:05:06 +02:00
|
|
|
%body
|
2016-12-02 16:04:23 +01:00
|
|
|
= render partial: 'layouts/support_navigator_banner'
|
2018-04-25 15:37:11 +02:00
|
|
|
= render partial: 'layouts/pre_maintenance'
|
2017-12-19 11:13:30 +01:00
|
|
|
- if Rails.env == 'staging'
|
|
|
|
#beta
|
2016-11-30 11:04:50 +01:00
|
|
|
Env Test
|
|
|
|
|
2017-04-26 14:46:43 +02:00
|
|
|
#wrap
|
2017-04-06 15:32:05 +02:00
|
|
|
.row
|
2017-04-26 14:46:43 +02:00
|
|
|
#header.navbar
|
2016-11-21 14:19:15 +01:00
|
|
|
= render partial: "layouts/navbar"
|
2017-04-06 15:32:05 +02:00
|
|
|
.row.no-margin
|
2016-12-01 12:19:22 +01:00
|
|
|
- if RenderPartialService.left_panel_exist? @left_pannel_url
|
2017-04-06 15:32:05 +02:00
|
|
|
.col-xs-2#left-panel
|
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
|
|
|
|
|
2017-04-06 19:10:25 +02:00
|
|
|
= render partial: 'layouts/main_container', locals: { main_container_size: main_container_size }
|
2017-04-12 11:12:05 +02:00
|
|
|
#mask-search
|
2016-11-29 09:56:11 +01:00
|
|
|
%h1
|
2017-04-06 17:18:03 +02:00
|
|
|
%i.fa.fa-times{ style: 'position: fixed; top: 10; right: 30; color: white;' }
|
2016-12-01 12:19:22 +01:00
|
|
|
|
2016-12-07 18:00:27 +01:00
|
|
|
= render partial: 'layouts/switch_devise_profile_module'
|
2016-12-01 18:35:51 +01:00
|
|
|
|
2017-04-06 19:10:25 +02:00
|
|
|
= render partial: 'layouts/footer', locals: { main_container_size: main_container_size }
|