2019-01-07 11:59:56 +01:00
|
|
|
!!! 5
|
2022-04-21 10:28:23 +02:00
|
|
|
%html{ lang: html_lang, class: yield(:root_class) }
|
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" }
|
|
|
|
%meta{ name: "viewport", content: "width=device-width, initial-scale=1" }
|
|
|
|
= csrf_meta_tags
|
|
|
|
|
2016-11-08 10:57:15 +01:00
|
|
|
%title
|
2020-07-22 10:32:20 +02:00
|
|
|
= content_for?(:title) ? "#{yield(:title)} · #{APPLICATION_NAME}" : APPLICATION_NAME
|
2016-01-20 15:50:28 +01:00
|
|
|
|
2020-11-21 00:15:31 +01:00
|
|
|
= favicon_link_tag(image_url("#{FAVICON_16PX_SRC}"), type: "image/png", sizes: "16x16")
|
|
|
|
= favicon_link_tag(image_url("#{FAVICON_32PX_SRC}"), type: "image/png", sizes: "32x32")
|
|
|
|
= favicon_link_tag(image_url("#{FAVICON_96PX_SRC}"), type: "image/png", sizes: "96x96")
|
2017-04-17 19:32:26 +02:00
|
|
|
|
2022-03-31 12:07:52 +02:00
|
|
|
- packs = ['application', 'track', administrateur_signed_in? ? 'track-admin' : nil].compact
|
|
|
|
= javascript_packs_with_chunks_tag *packs, defer: true
|
2020-10-08 09:02:03 +02:00
|
|
|
|
2020-10-11 22:49:02 +02:00
|
|
|
= preload_link_tag(asset_url("Muli-Regular.woff2"))
|
|
|
|
= preload_link_tag(asset_url("Muli-Bold.woff2"))
|
2020-10-08 09:02:03 +02:00
|
|
|
|
2021-01-28 15:27:29 +01:00
|
|
|
= stylesheet_link_tag 'application', media: 'all'
|
2019-01-07 11:59:56 +01:00
|
|
|
|
2019-05-03 16:12:24 +02:00
|
|
|
= Gon::Base.render_data(camel_case: true, init: true, nonce: request.content_security_policy_nonce)
|
2019-03-26 16:02:08 +01:00
|
|
|
|
2019-04-01 15:03:13 +02:00
|
|
|
%body{ id: content_for(:page_id), 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'
|
2019-12-04 15:10:30 +01:00
|
|
|
|
2019-01-07 11:59:56 +01:00
|
|
|
- if staging?
|
|
|
|
#beta
|
|
|
|
Env Test
|
|
|
|
|
2021-01-28 15:27:29 +01:00
|
|
|
= render partial: "layouts/header"
|
2019-11-06 17:12:57 +01:00
|
|
|
%main
|
|
|
|
= render partial: "layouts/flash_messages"
|
|
|
|
= content_for?(:content) ? yield(:content) : yield
|
2019-01-07 11:59:56 +01:00
|
|
|
|
|
|
|
- if content_for?(:footer)
|
|
|
|
= content_for(:footer)
|
|
|
|
|
|
|
|
= yield :charts_js
|