2017-01-21 13:30:47 -08:00
|
|
|
!!!
|
2017-05-07 18:35:25 -07:00
|
|
|
%html{ lang: I18n.locale }
|
2017-01-21 13:30:47 -08:00
|
|
|
%head
|
2017-05-07 18:35:25 -07:00
|
|
|
%meta{ content: 'text/html; charset=UTF-8', 'http-equiv' => 'Content-Type' }/
|
|
|
|
%meta{ charset: 'utf-8' }/
|
2017-09-28 18:03:03 -07:00
|
|
|
%title= safe_join([yield(:page_title), Setting.default_settings['site_title']], ' - ')
|
2017-05-07 18:35:25 -07:00
|
|
|
%meta{ content: 'width=device-width,initial-scale=1', name: 'viewport' }/
|
2017-09-24 19:04:04 -07:00
|
|
|
= stylesheet_pack_tag 'common', media: 'all'
|
|
|
|
= stylesheet_pack_tag Setting.default_settings['theme'], media: 'all'
|
2019-02-15 14:33:25 -08:00
|
|
|
= javascript_pack_tag 'common', integrity: true, crossorigin: 'anonymous'
|
|
|
|
= javascript_pack_tag 'error', integrity: true, crossorigin: 'anonymous'
|
2017-09-24 19:04:04 -07:00
|
|
|
%body.error
|
2017-01-21 13:30:47 -08:00
|
|
|
.dialog
|
2019-02-15 14:33:25 -08:00
|
|
|
.dialog__illustration
|
|
|
|
%img{ alt: Setting.default_settings['site_title'], src: '/oops.png' }/
|
|
|
|
.dialog__message
|
2017-01-21 13:30:47 -08:00
|
|
|
%h1= yield :content
|