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 }/
|
|
|
|
|
|
|
|
- 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
|
|
|
|
2017-07-11 23:15:42 +10:00
|
|
|
= stylesheet_pack_tag 'common', media: 'all'
|
2017-09-20 00:36:23 +10:00
|
|
|
= stylesheet_pack_tag current_theme, media: 'all'
|
2017-05-16 04:20:10 +10:00
|
|
|
= javascript_pack_tag 'common', integrity: true, crossorigin: 'anonymous'
|
2017-05-22 23:06:06 +10:00
|
|
|
= javascript_pack_tag "locale_#{I18n.locale}", integrity: true, crossorigin: 'anonymous'
|
2016-02-23 02:00:20 +11:00
|
|
|
= csrf_meta_tags
|
2016-09-30 08:00:45 +10:00
|
|
|
|
2018-08-24 12:33:27 +10:00
|
|
|
- if Setting.custom_css.present?
|
|
|
|
= stylesheet_link_tag custom_css_path, media: 'all'
|
|
|
|
|
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
|