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
|
2023-10-25 21:38:01 +09:00
|
|
|
%meta{ 'content' => 'text/html; charset=UTF-8', 'http-equiv' => 'Content-Type' }/
|
2017-05-08 10:35:25 +09:00
|
|
|
%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' }/
|
2024-05-01 21:06:09 +09:00
|
|
|
= theme_style_tags current_theme
|
2023-10-26 03:01:51 +09:00
|
|
|
= javascript_pack_tag 'common', crossorigin: 'anonymous'
|
2024-04-28 19:08:08 +09:00
|
|
|
= flavoured_javascript_pack_tag 'error', crossorigin: 'anonymous'
|
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
|