2016-02-28 14:41:01 +01:00
|
|
|
!!! 5
|
2017-05-08 03:35:25 +02:00
|
|
|
%html{ lang: I18n.locale }
|
2016-02-22 16:00:20 +01:00
|
|
|
%head
|
2017-05-08 03:35:25 +02:00
|
|
|
%meta{ charset: 'utf-8' }/
|
2018-03-09 00:35:07 +01:00
|
|
|
%meta{ name: 'viewport', content: 'width=device-width, initial-scale=1' }/
|
2018-10-10 01:31:10 +02:00
|
|
|
|
|
|
|
- if cdn_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: cdn_host }/
|
|
|
|
|
|
|
|
- if storage_host?
|
|
|
|
%link{ rel: 'dns-prefetch', href: storage_host }/
|
|
|
|
|
2017-05-08 03:35:25 +02: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 15:18:40 +01:00
|
|
|
|
2018-03-10 11:43:20 +01:00
|
|
|
%title= content_for?(:page_title) ? safe_join([yield(:page_title).chomp.html_safe, title], ' - ') : title
|
2016-09-30 00:00:45 +02:00
|
|
|
|
2017-07-11 15:15:42 +02:00
|
|
|
= stylesheet_pack_tag 'common', media: 'all'
|
2017-09-19 16:36:23 +02:00
|
|
|
= stylesheet_pack_tag current_theme, media: 'all'
|
2017-05-15 20:20:10 +02:00
|
|
|
= javascript_pack_tag 'common', integrity: true, crossorigin: 'anonymous'
|
2017-05-22 15:06:06 +02:00
|
|
|
= javascript_pack_tag "locale_#{I18n.locale}", integrity: true, crossorigin: 'anonymous'
|
2016-02-22 16:00:20 +01:00
|
|
|
= csrf_meta_tags
|
2016-09-30 00:00:45 +02:00
|
|
|
|
2018-08-24 04:33:27 +02:00
|
|
|
- if Setting.custom_css.present?
|
|
|
|
= stylesheet_link_tag custom_css_path, media: 'all'
|
|
|
|
|
2016-02-28 14:41:01 +01:00
|
|
|
= yield :header_tags
|
2016-09-30 00:00:45 +02:00
|
|
|
|
2018-08-25 22:55:25 +02:00
|
|
|
%body{ class: body_classes }
|
2016-03-12 16:09:46 +01:00
|
|
|
= content_for?(:content) ? yield(:content) : yield
|
2019-05-27 03:33:39 +02:00
|
|
|
|
|
|
|
%div{ style: 'display: none'}
|
|
|
|
= render file: Rails.root.join('app', 'javascript', 'images', 'logo_transparent.svg')
|