2016-02-28 13:41:01 +00:00
|
|
|
!!! 5
|
2017-05-08 01:35:25 +00:00
|
|
|
%html{ lang: I18n.locale }
|
2016-02-22 15:00:20 +00:00
|
|
|
%head
|
2017-05-08 01:35:25 +00:00
|
|
|
%meta{ charset: 'utf-8' }/
|
2018-03-08 23:35:07 +00:00
|
|
|
%meta{ name: 'viewport', content: 'width=device-width, initial-scale=1' }/
|
2018-10-09 23:31:10 +00:00
|
|
|
|
|
|
|
- if cdn_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: cdn_host }/
|
2020-10-12 23:19:35 +00:00
|
|
|
%meta{ name: 'cdn-host', content: cdn_host }/
|
2018-10-09 23:31:10 +00:00
|
|
|
|
|
|
|
- if storage_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: storage_host }/
|
|
|
|
|
2024-05-06 15:06:52 +00:00
|
|
|
- SiteUpload::FAVICON_SIZES.each do |size|
|
2024-05-15 09:38:16 +00:00
|
|
|
%link{ rel: 'icon', sizes: "#{size}x#{size}", href: favicon_path(size.to_i) || frontend_asset_path("icons/favicon-#{size}x#{size}.png"), type: 'image/png' }/
|
2022-06-09 20:25:23 +00:00
|
|
|
|
2024-05-06 15:06:52 +00:00
|
|
|
- SiteUpload::APPLE_ICON_SIZES.each do |size|
|
2024-05-15 09:38:16 +00:00
|
|
|
%link{ rel: 'apple-touch-icon', sizes: "#{size}x#{size}", href: app_icon_path(size.to_i) || frontend_asset_path("icons/apple-touch-icon-#{size}x#{size}.png") }/
|
2022-06-09 20:25:23 +00:00
|
|
|
|
2024-06-17 09:00:26 +00:00
|
|
|
- if use_mask_icon?
|
|
|
|
%link{ rel: 'mask-icon', href: frontend_asset_path('images/logo-symbol-icon.svg'), color: '#6364FF' }/
|
2022-06-09 20:25:23 +00:00
|
|
|
%link{ rel: 'manifest', href: manifest_path(format: :json) }/
|
2024-04-05 09:52:43 +00:00
|
|
|
= theme_color_tags current_theme
|
2024-09-10 17:32:58 +00:00
|
|
|
%meta{ name: 'mobile-web-app-capable', content: 'yes' }/
|
2016-11-02 14:18:40 +00:00
|
|
|
|
2023-11-09 13:05:57 +00:00
|
|
|
%title= html_title
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2024-03-26 09:25:49 +00:00
|
|
|
= theme_style_tags current_theme
|
2024-01-12 09:32:45 +00:00
|
|
|
-# Needed for the wicg-inert polyfill. It needs to be on it's own <style> tag, with this `id`
|
2024-06-13 14:37:43 +00:00
|
|
|
= stylesheet_pack_tag 'inert', media: 'all', crossorigin: 'anonymous', id: 'inert-style'
|
2024-01-12 09:32:45 +00:00
|
|
|
|
2020-11-06 10:56:31 +00:00
|
|
|
= javascript_pack_tag 'common', crossorigin: 'anonymous'
|
2023-07-21 09:14:26 +00:00
|
|
|
= preload_pack_asset "locale/#{I18n.locale}-json.js"
|
2023-04-25 14:51:38 +00:00
|
|
|
= csrf_meta_tags unless skip_csrf_meta_tags?
|
2020-07-06 23:33:38 +00:00
|
|
|
%meta{ name: 'style-nonce', content: request.content_security_policy_nonce }
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2022-10-29 12:04:24 +00:00
|
|
|
= stylesheet_link_tag custom_css_path, skip_pipeline: true, host: root_url, media: 'all'
|
2018-08-24 02:33:27 +00:00
|
|
|
|
2016-02-28 13:41:01 +00:00
|
|
|
= yield :header_tags
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2018-08-25 20:55:25 +00:00
|
|
|
%body{ class: body_classes }
|
2016-03-12 15:09:46 +00:00
|
|
|
= content_for?(:content) ? yield(:content) : yield
|
2019-05-27 01:33:39 +00:00
|
|
|
|
2024-06-06 07:50:15 +00:00
|
|
|
.logo-resources{ 'tabindex' => '-1', 'inert' => true, 'aria-hidden' => 'true' }
|
2024-03-19 14:17:18 +00:00
|
|
|
= inline_svg_tag 'logo-symbol-icon.svg'
|
|
|
|
= inline_svg_tag 'logo-symbol-wordmark.svg'
|