52 lines
1.9 KiB
Text
52 lines
1.9 KiB
Text
%html
|
|
%head
|
|
%meta{ :content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type" }/
|
|
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
|
|
%title
|
|
= t('dynamics.page_title')
|
|
%meta{ 'http-equiv' => "X-UA-Compatible", :content => "IE=edge" }
|
|
|
|
= 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")
|
|
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => "reload"
|
|
= stylesheet_link_tag 'print', media: 'print', 'data-turbolinks-track' => "reload"
|
|
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
|
|
|
= csrf_meta_tags
|
|
%body
|
|
= render partial: 'layouts/support_navigator_banner'
|
|
= render partial: 'layouts/pre_maintenance'
|
|
- if Rails.env == 'staging'
|
|
#beta
|
|
Env Test
|
|
|
|
- if Rails.env == 'test'
|
|
%script{ type: 'text/javascript' }
|
|
(typeof jQuery !== 'undefined') && (jQuery.fx.off = true);
|
|
|
|
|
|
= render partial: 'layouts/ie_lt_10'
|
|
|
|
|
|
#wrap
|
|
.row
|
|
#header.navbar
|
|
= render partial: "layouts/navbar"
|
|
.row.no-margin
|
|
- if RenderPartialService.left_panel_exist? @left_pannel_url
|
|
.col-xs-2#left-panel
|
|
= 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/switch_devise_profile_module'
|
|
|
|
= render partial: 'layouts/footer', locals: { main_container_size: main_container_size }
|