2019-01-07 11:59:56 +01:00
|
|
|
!!! 5
|
|
|
|
%html{ lang: "fr" }
|
2015-08-10 11:05:06 +02:00
|
|
|
%head
|
2019-01-07 11:59:56 +01:00
|
|
|
%meta{ "http-equiv": "Content-Type", content: "text/html; charset=UTF-8" }
|
|
|
|
%meta{ "http-equiv": "X-UA-Compatible", content: "IE=edge" }
|
2017-03-30 17:54:43 +02:00
|
|
|
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
|
2019-01-07 11:59:56 +01:00
|
|
|
%meta{ name: "viewport", content: "width=device-width, initial-scale=1" }
|
|
|
|
= csrf_meta_tags
|
|
|
|
|
2016-11-08 10:57:15 +01:00
|
|
|
%title
|
2019-01-07 11:59:56 +01:00
|
|
|
= content_for?(:title) ? "#{yield(:title)} · demarches-simplifiees.fr" : "demarches-simplifiees.fr"
|
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")
|
|
|
|
|
2019-01-07 11:59:56 +01:00
|
|
|
= javascript_pack_tag 'application', defer: true, 'data-turbolinks-track': 'reload'
|
|
|
|
= stylesheet_link_tag 'new_design/new_application', media: 'all', 'data-turbolinks-track': 'reload'
|
|
|
|
= stylesheet_link_tag 'new_design/print', media: 'print', 'data-turbolinks-track': 'reload'
|
|
|
|
|
|
|
|
- if Rails.env.development?
|
|
|
|
= stylesheet_link_tag :xray
|
2018-07-12 11:50:47 +02:00
|
|
|
|
2018-11-02 14:55:59 +01:00
|
|
|
= render partial: "layouts/matomo"
|
|
|
|
|
2018-07-12 11:50:47 +02:00
|
|
|
:javascript
|
2018-08-09 16:45:56 +02:00
|
|
|
DATA = [{
|
|
|
|
sentry: #{raw(sentry_config)}
|
|
|
|
}];
|
2018-11-02 14:55:59 +01:00
|
|
|
|
2018-09-12 16:42:04 +02:00
|
|
|
%body{ class: browser.platform.ios? ? 'ios' : nil }
|
2019-01-07 11:59:56 +01:00
|
|
|
.page-wrapper
|
|
|
|
= render partial: "layouts/outdated_browser_banner"
|
|
|
|
= render partial: 'layouts/pre_maintenance'
|
|
|
|
- if staging?
|
|
|
|
#beta
|
|
|
|
Env Test
|
|
|
|
|
|
|
|
= render partial: "layouts/new_header"
|
|
|
|
= render partial: "layouts/flash_messages"
|
|
|
|
= yield
|
|
|
|
|
|
|
|
- if content_for?(:footer)
|
|
|
|
= content_for(:footer)
|
|
|
|
|
|
|
|
- if Rails.env.development?
|
|
|
|
= javascript_include_tag :xray
|
|
|
|
|
|
|
|
= yield :charts_js
|