2017-01-21 21:30:47 +00:00
|
|
|
!!!
|
2017-05-08 01:35:25 +00:00
|
|
|
%html{ lang: I18n.locale }
|
2017-01-21 21:30:47 +00:00
|
|
|
%head
|
2017-05-08 01:35:25 +00:00
|
|
|
%meta{ content: 'text/html; charset=UTF-8', 'http-equiv' => 'Content-Type' }/
|
|
|
|
%meta{ charset: 'utf-8' }/
|
2017-09-29 01:03:03 +00:00
|
|
|
%title= safe_join([yield(:page_title), Setting.default_settings['site_title']], ' - ')
|
2017-05-08 01:35:25 +00:00
|
|
|
%meta{ content: 'width=device-width,initial-scale=1', name: 'viewport' }/
|
2020-11-07 17:19:34 +00:00
|
|
|
= javascript_pack_tag "locales", crossorigin: 'anonymous'
|
2018-05-22 16:29:11 +00:00
|
|
|
= render partial: 'layouts/theme', object: (@core || { pack: 'common' })
|
2019-02-17 11:53:51 +00:00
|
|
|
= render partial: 'layouts/theme', object: (@theme || { pack: 'error', flavour: 'glitch', common: { pack: 'common', flavour: 'glitch', skin: 'default' } })
|
2017-09-25 02:04:04 +00:00
|
|
|
%body.error
|
2017-01-21 21:30:47 +00:00
|
|
|
.dialog
|
2019-02-15 22:33:25 +00:00
|
|
|
.dialog__illustration
|
|
|
|
%img{ alt: Setting.default_settings['site_title'], src: '/oops.png' }/
|
|
|
|
.dialog__message
|
2017-01-21 21:30:47 +00:00
|
|
|
%h1= yield :content
|