Renamed 404.html to error.html

404.html no longer contains anything specific to the 404 error and will
henceforth serve (with some enhancements) as a general purpose error
page template.
This commit is contained in:
Veloman Yunkan
2022-01-30 16:49:00 +04:00
committed by Matthieu Gautier
parent 647118dd5e
commit 89dc9afc28
4 changed files with 2 additions and 5 deletions

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html;charset=UTF-8" http-equiv="content-type" />
<title>{{PAGE_TITLE}}</title>
</head>
<body>
<h1>{{PAGE_HEADING}}</h1>
{{#details}}
<p>
{{{p}}}
</p>
{{/details}}
</body>
</html>