blob: 87296bc9371c372cc950093d4f9b2997a662bd21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<title>Error: <%= code %></title>
<link rel="stylesheet" href="/css/globalstyles.css">
</head>
<body>
<div id="main-container">
<%- include('partials/header') %>
<div id="content">
<h1>An error occurred (<%= code %>)</h1>
<p>Go <a href="/">home</a>?</p>
</div>
</div>
</body>
</html>
|