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'
|
|
|
|
= javascript_pack_tag "locale_#{I18n.locale}", integrity: true, crossorigin: 'anonymous'
|
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
|
|
|
|
2020-04-28 17:16:55 +09:00
|
|
|
.logo-resources
|
2021-04-05 20:05:49 +09:00
|
|
|
= raw render file: Rails.root.join('app', 'javascript', 'images', 'logo_transparent.svg')
|