Skip to content

Commit

Permalink
chore: add error page
Browse files Browse the repository at this point in the history
  • Loading branch information
calmh committed Sep 25, 2024
1 parent 761cd42 commit 3de7363
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions error.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<title>Error</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" href="images/favicon.png" type="image/png" />

<link rel="apple-touch-icon-precomposed" sizes="57x57" href="images/favicons/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/favicons/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/favicons/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="images/favicons/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/favicons/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="images/favicons/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="images/favicons/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/favicons/favicon-16x16.png" sizes="16x16" />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="images/favicons/mstile-144x144.png" />
<meta name="theme-color" content="#FFFFFF" />

<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/raleway.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>

<body>
<div id="main">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Not Found</h1>
<p>Try going back to the <a href="/">main page</a>.</p>
</div>
</div>
</div>
</div>
</body>

</html>

0 comments on commit 3de7363

Please sign in to comment.