quetre/views/pug/pages/error.pug
zyachel 595b720ee1 fix: fix outgoing url on error page
also refactor some related code
2023-01-15 21:41:09 +05:30

27 lines
No EOL
827 B
Text

//-//////////////////////////////////////////////////////
//- INCLUDES/EXTENDS
//-//////////////////////////////////////////////////////
extends ../base
include ../mixins/_utils
//-//////////////////////////////////////////////////////
//- MAIN CONTENT
//-//////////////////////////////////////////////////////
block content
main#main.main.error
//- ABOUT ERROR
p.error__code= data.statusCode
p.error__message= data.message
//- ONLY FOR DEV MODE
if data.stack
.error__stack-box: pre.error__stack
code.error__text= data.stack
//- CHOICES TO USER
p.error__return Go back to the 
a.error__link(href="/") Home Page
|.
p.error__return Or view this route 
+quorafyUrl(meta.url, 'on Quora')(class='error__link')
|.