2018-03-06 15:52:18 +01:00
|
|
|
!!! 5
|
|
|
|
%html{ lang: "fr" }
|
2017-04-04 14:36:06 +02:00
|
|
|
%head
|
2017-06-20 17:31:58 +02:00
|
|
|
%meta{ "http-equiv": "Content-Type", content: "text/html; charset=UTF-8" }
|
|
|
|
%meta{ "http-equiv": "X-UA-Compatible", content: "IE=edge" }
|
|
|
|
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
|
2017-05-17 18:06:25 +02:00
|
|
|
%meta{ name: "viewport", content: "width=device-width, initial-scale=1" }
|
2017-04-04 14:36:06 +02:00
|
|
|
= csrf_meta_tags
|
|
|
|
|
|
|
|
%title
|
2018-03-06 15:56:09 +01:00
|
|
|
= content_for?(:title) ? "#{yield(:title)} · demarches-simplifiees.fr" : "demarches-simplifiees.fr"
|
2017-04-04 14:36:06 +02:00
|
|
|
|
2017-04-04 14:41:13 +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
|
|
|
= 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'
|
2017-04-04 14:36:06 +02:00
|
|
|
|
2018-06-27 14:20:15 +02:00
|
|
|
- if Rails.env.development?
|
|
|
|
= stylesheet_link_tag :xray
|
|
|
|
|
2018-07-12 11:50:47 +02:00
|
|
|
:javascript
|
|
|
|
DATA = [];
|
2017-04-04 14:36:06 +02:00
|
|
|
%body
|
2018-02-27 16:08:38 +01:00
|
|
|
.page-wrapper
|
2017-07-17 14:52:09 +02:00
|
|
|
= render partial: "layouts/support_navigator_banner"
|
|
|
|
= render partial: "layouts/ie_lt_10"
|
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
|
2017-07-17 14:52:09 +02:00
|
|
|
Env Test
|
2017-04-04 14:36:06 +02:00
|
|
|
|
2017-07-17 14:52:09 +02:00
|
|
|
= render partial: "layouts/new_header"
|
|
|
|
= render partial: "layouts/flash_messages"
|
|
|
|
= yield
|
2017-04-04 14:36:06 +02:00
|
|
|
|
2018-06-19 16:21:37 +02:00
|
|
|
- if content_for?(:footer)
|
|
|
|
= content_for(:footer)
|
2017-07-17 14:52:09 +02:00
|
|
|
= render partial: "layouts/mailjet_newsletter"
|
2017-04-04 14:36:06 +02:00
|
|
|
|
2018-06-27 14:20:15 +02:00
|
|
|
- if Rails.env.development?
|
|
|
|
= javascript_include_tag :xray
|
|
|
|
|
2017-07-17 14:52:09 +02:00
|
|
|
= yield :charts_js
|