2016-12-18 15:20:39 +01:00
|
|
|
!!! 5
|
2017-05-08 03:35:25 +02:00
|
|
|
%html{ lang: I18n.locale }
|
2016-12-18 15:20:39 +01:00
|
|
|
%head
|
2017-05-08 03:35:25 +02:00
|
|
|
%meta{ charset: 'utf-8' }/
|
2017-07-14 16:41:02 +02:00
|
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
|
|
|
|
2018-10-12 02:19:10 +02:00
|
|
|
- if cdn_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: cdn_host }/
|
2020-10-13 01:19:35 +02:00
|
|
|
%meta{ name: 'cdn-host', content: cdn_host }/
|
2018-10-12 02:19:10 +02:00
|
|
|
|
|
|
|
- if storage_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: storage_host }/
|
|
|
|
|
2024-03-26 10:25:49 +01:00
|
|
|
= theme_style_tags Setting.theme # Use the admin-configured theme here, even if logged in
|
2017-06-05 10:08:31 +02:00
|
|
|
= javascript_pack_tag 'common', integrity: true, crossorigin: 'anonymous'
|
2023-07-21 11:14:26 +02:00
|
|
|
= preload_pack_asset "locale/#{I18n.locale}-json.js"
|
2020-01-18 19:50:43 +01:00
|
|
|
= render_initial_state
|
2017-05-03 02:04:16 +02:00
|
|
|
= javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous'
|
2016-12-18 15:20:39 +01:00
|
|
|
%body.embed
|
|
|
|
= yield
|
2020-01-18 19:50:43 +01:00
|
|
|
|
2024-06-06 09:50:15 +02:00
|
|
|
.logo-resources{ 'tabindex' => '-1', 'inert' => true, 'aria-hidden' => 'true' }
|
2024-03-19 15:17:18 +01:00
|
|
|
= inline_svg_tag 'logo-symbol-icon.svg'
|