mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
939 B
27 lines
939 B
extends master.pug
|
|
|
|
block body
|
|
#root.is-fullscreen
|
|
v-app(dark)
|
|
.app-error
|
|
v-container
|
|
.pt-5
|
|
v-layout(row)
|
|
v-flex(xs10)
|
|
a(href='/'): img(src='/svg/logo-wikijs.svg')
|
|
v-flex(xs2).text-xs-right
|
|
v-btn(href='/', depressed, color='red darken-3')
|
|
v-icon(left) home
|
|
span Home
|
|
v-alert(color='grey', outline, :value='true', icon='error')
|
|
strong.red--text.text--lighten-3 Oops, something went wrong...
|
|
.body-1.red--text.text--lighten-2= message
|
|
|
|
if error.stack
|
|
v-expansion-panel.mt-5
|
|
v-expansion-panel-content.red.darken-3(:value='true')
|
|
div(slot='header') View Debug Trace
|
|
v-card(color='grey darken-4')
|
|
v-card-text
|
|
pre: code #{error.stack}
|