Rocket/examples/templating/templates/hbs/error/404.html.hbs
Sergio Benitez 1c600bda30 Discover manually registered templates.
This includes one breaking change: the default Content-Type of templates
without an identifying extension is now 'Text'. This is to prevent Tera
templates from rendering as HTML without being escaped.

Resolves #1637.
2021-05-18 11:40:10 -07:00

12 lines
215 B
Handlebars

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>404 - hbs</title>
</head>
<body>
<h1>404: Hey! There's nothing here.</h1>
The page at {{ path }} does not exist!
</body>
</html>