aboutsummaryrefslogtreecommitdiffstats
path: root/views/error.ejs
blob: 88e1a27d41b2bdfdbcf4e7b4c97d3bad883d96be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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-container">
            <%- include('partials/navbar') %>
            <div id="content">
                <h1>An error occurred (<%= code %>)</h1>
                <p>Go <a href="/">home</a>?</p>
            </div>
        </div>
    </div>
</body>
</html>