2016-02-29 00:41:01 +11:00
|
|
|
!!! 5
|
2017-05-08 11:35:25 +10:00
|
|
|
%html{ lang: I18n.locale }
|
2016-02-23 02:00:20 +11:00
|
|
|
%head
|
2017-05-08 11:35:25 +10:00
|
|
|
%meta{ charset: 'utf-8' }/
|
2018-03-09 10:35:07 +11:00
|
|
|
%meta{ name: 'viewport', content: 'width=device-width, initial-scale=1' }/
|
2018-10-10 10:31:10 +11:00
|
|
|
|
|
|
|
- if cdn_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: cdn_host }/
|
2020-10-13 10:19:35 +11:00
|
|
|
%meta{ name: 'cdn-host', content: cdn_host }/
|
2018-10-10 10:31:10 +11:00
|
|
|
|
|
|
|
- if storage_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: storage_host }/
|
|
|
|
|
2017-05-08 11:35:25 +10:00
|
|
|
%link{ rel: 'icon', href: favicon_path, type: 'image/x-icon' }/
|
|
|
|
%link{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' }/
|
|
|
|
%link{ rel: 'mask-icon', href: '/mask-icon.svg', color: '#2B90D9' }/
|
|
|
|
%link{ rel: 'manifest', href: '/manifest.json' }/
|
|
|
|
%meta{ name: 'msapplication-config', content: '/browserconfig.xml' }/
|
|
|
|
%meta{ name: 'theme-color', content: '#282c37' }/
|
|
|
|
%meta{ name: 'apple-mobile-web-app-capable', content: 'yes' }/
|
2016-11-03 01:18:40 +11:00
|
|
|
|
2018-03-10 21:43:20 +11:00
|
|
|
%title= content_for?(:page_title) ? safe_join([yield(:page_title).chomp.html_safe, title], ' - ') : title
|
2016-09-30 08:00:45 +10:00
|
|
|
|
2020-11-06 21:56:31 +11:00
|
|
|
= stylesheet_pack_tag 'common', media: 'all', crossorigin: 'anonymous'
|
|
|
|
= stylesheet_pack_tag current_theme, media: 'all', crossorigin: 'anonymous'
|
|
|
|
= javascript_pack_tag 'common', crossorigin: 'anonymous'
|
|
|
|
= javascript_pack_tag "locale_#{I18n.locale}", crossorigin: 'anonymous'
|
2016-02-23 02:00:20 +11:00
|
|
|
= csrf_meta_tags
|
2020-07-07 09:33:38 +10:00
|
|
|
%meta{ name: 'style-nonce', content: request.content_security_policy_nonce }
|
2016-09-30 08:00:45 +10:00
|
|
|
|
2020-05-09 05:22:57 +10:00
|
|
|
= stylesheet_link_tag '/inert.css', skip_pipeline: true, media: 'all', id: 'inert-style'
|
|
|
|
|
2018-08-24 12:33:27 +10:00
|
|
|
- if Setting.custom_css.present?
|
2021-03-20 06:23:08 +11:00
|
|
|
= stylesheet_link_tag custom_css_path, host: request.host, media: 'all'
|
2018-08-24 12:33:27 +10:00
|
|
|
|
2016-02-29 00:41:01 +11:00
|
|
|
= yield :header_tags
|
2016-09-30 08:00:45 +10:00
|
|
|
|
2018-08-26 06:55:25 +10:00
|
|
|
%body{ class: body_classes }
|
2016-03-13 02:09:46 +11:00
|
|
|
= content_for?(:content) ? yield(:content) : yield
|
2019-05-27 11:33:39 +10:00
|
|
|
|
2020-04-28 18:16:55 +10:00
|
|
|
.logo-resources
|
2021-04-05 21:05:49 +10:00
|
|
|
= raw render file: Rails.root.join('app', 'javascript', 'images', 'logo_transparent.svg')
|
|
|
|
= raw render file: Rails.root.join('app', 'javascript', 'images', 'logo_full.svg')
|