123456789101112131415161718192021222324252627282930313233 |
- doctype html
- html(data-logic='error')
- head
- meta(http-equiv='X-UA-Compatible', content='IE=edge')
- meta(charset='UTF-8')
- meta(name='viewport', content='width=device-width, initial-scale=1')
- meta(name='theme-color', content='#009688')
- meta(name='msapplication-TileColor', content='#009688')
- meta(name='msapplication-TileImage', content=appconfig.host + '/favicons/ms-icon-144x144.png')
- title= appconfig.title
- // Favicon
- each favsize in [57, 60, 72, 76, 114, 120, 144, 152, 180]
- link(rel='apple-touch-icon', sizes=favsize + 'x' + favsize, href=appconfig.host + '/favicons/apple-icon-' + favsize + 'x' + favsize + '.png')
- link(rel='icon', type='image/png', sizes='192x192', href=appconfig.host + '/favicons/android-icon-192x192.png')
- each favsize in [32, 96, 16]
- link(rel='icon', type='image/png', sizes=favsize + 'x' + favsize, href=appconfig.host + '/favicons/favicon-' + favsize + 'x' + favsize + '.png')
- link(rel='manifest', href=appconfig.host + '/manifest.json')
- // JS / CSS
- script(type='text/javascript', src=appconfig.host + '/js/vendor.js')
- script(type='text/javascript', src=appconfig.host + '/js/app.js')
- body(class='is-error')
- .container
- a(href='/'): img(src=appconfig.host + '/images/logo.png')
- h1= message
- h2= t('errors:generic')
- a.button.is-amber.is-inverted.is-featured(href=appconfig.host + '/')= t('errors:actions.gohome')
- if error.stack
- h3= t('errors:debugmsg')
- pre: code #{error.stack}
|