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