Files
the-example-app-nodejs/views/error.pug
2017-11-07 17:33:32 +01:00

24 lines
697 B
Plaintext

extends layout
include mixins/_breadcrumb
block content
.layout-centered
+breadcrumb
.error
h1 Oops Something went wrong (#{error.status})
h2 Try:
ul
li Check if the content model has changed
li Check the selection has content in draft or published state (for Preview or Delivery)
li Check if there's any content for this locale
li Verify credentials are correct and up to date
li Check the stack trace below
if error.response
h2 Error
pre.error__stack-trace
code.shell #{helpers.dump(error.response.data)}
h2 Stack trace
pre.error__stack-trace
code.shell #{error.stack}