errors

Custom pages for error responses, rendered inside the layout and prerendered once at start: an error answer costs no template work at request time.

codewhen it fires
400bad form input or a malformed request
404no such page, or a single-row view found nothing
413request body over server.max_body_size
429rate limit hit on a form endpoint
500template or database failure
"errors": { "404": { "hbs": "errors/404.hbs" }, "429": { "hbs": "errors/429.hbs" } }

See hbs/errors/ on this site for the templates. A code without an entry falls back to a plain built-in page.

← All articles in this group