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