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
|
2023-10-25 12:38:01 +00:00
|
|
|
%meta{ 'content' => 'text/html; charset=UTF-8', 'http-equiv' => 'Content-Type' }/
|
2017-05-08 01:35:25 +00:00
|
|
|
%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' }/
|
2024-04-27 20:34:41 +00:00
|
|
|
= stylesheet_pack_tag 'flavours/vanilla/common', media: 'all', crossorigin: 'anonymous' # upstream uses `common` but that's implicitly defined
|
|
|
|
= stylesheet_pack_tag current_theme, media: 'all', crossorigin: 'anonymous'
|
2023-10-25 18:01:51 +00:00
|
|
|
= javascript_pack_tag 'common', crossorigin: 'anonymous'
|
2024-04-28 10:08:08 +00:00
|
|
|
= flavoured_javascript_pack_tag 'error', crossorigin: 'anonymous'
|
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
|