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