2016-02-28 08:41:01 -05:00
|
|
|
!!! 5
|
2017-05-07 21:35:25 -04:00
|
|
|
%html{ lang: I18n.locale }
|
2016-02-22 10:00:20 -05:00
|
|
|
%head
|
2017-05-07 21:35:25 -04:00
|
|
|
%meta{ charset: 'utf-8' }/
|
2018-03-08 18:35:07 -05:00
|
|
|
%meta{ name: 'viewport', content: 'width=device-width, initial-scale=1' }/
|
2018-10-09 19:31:10 -04:00
|
|
|
|
|
|
|
- if cdn_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: cdn_host }/
|
2020-10-12 19:19:35 -04:00
|
|
|
%meta{ name: 'cdn-host', content: cdn_host }/
|
2018-10-09 19:31:10 -04:00
|
|
|
|
|
|
|
- if storage_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: storage_host }/
|
|
|
|
|
2017-05-07 21:35:25 -04: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-02 10:18:40 -04:00
|
|
|
|
2018-03-10 05:43:20 -05:00
|
|
|
%title= content_for?(:page_title) ? safe_join([yield(:page_title).chomp.html_safe, title], ' - ') : title
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2020-11-06 05:56:31 -05: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-22 10:00:20 -05:00
|
|
|
= csrf_meta_tags
|
2020-07-06 19:33:38 -04:00
|
|
|
%meta{ name: 'style-nonce', content: request.content_security_policy_nonce }
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2020-05-08 15:22:57 -04:00
|
|
|
= stylesheet_link_tag '/inert.css', skip_pipeline: true, media: 'all', id: 'inert-style'
|
|
|
|
|
2018-08-23 22:33:27 -04:00
|
|
|
- if Setting.custom_css.present?
|
2021-03-19 15:23:08 -04:00
|
|
|
= stylesheet_link_tag custom_css_path, host: request.host, media: 'all'
|
2018-08-23 22:33:27 -04:00
|
|
|
|
2016-02-28 08:41:01 -05:00
|
|
|
= yield :header_tags
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2018-08-25 16:55:25 -04:00
|
|
|
%body{ class: body_classes }
|
2016-03-12 10:09:46 -05:00
|
|
|
= content_for?(:content) ? yield(:content) : yield
|
2019-05-26 21:33:39 -04:00
|
|
|
|
2020-04-28 04:16:55 -04:00
|
|
|
.logo-resources
|
2019-05-26 21:33:39 -04:00
|
|
|
= render file: Rails.root.join('app', 'javascript', 'images', 'logo_transparent.svg')
|
2019-06-08 09:30:06 -04:00
|
|
|
= render file: Rails.root.join('app', 'javascript', 'images', 'logo_full.svg')
|