templates: added 404 and 505.
Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
parent
088a271d54
commit
182335fd10
2 changed files with 28 additions and 0 deletions
13
templates/404.html
Normal file
13
templates/404.html
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||||||
|
"http://www.w3.org/TR/html4/strict.dtd">
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Page not found</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Page not found</h1>
|
||||||
|
|
||||||
|
<p>Sorry, but the requested page could not be found.</p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
15
templates/505.html
Normal file
15
templates/505.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||||||
|
"http://www.w3.org/TR/html4/strict.dtd">
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>Page unavailable</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Page unavailable</h1>
|
||||||
|
|
||||||
|
<p>Sorry, but the requested page is unavailable due to a
|
||||||
|
server hiccup.</p>
|
||||||
|
|
||||||
|
<p>Our engineers have been notified, so check back later.</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue