aboutsummaryrefslogtreecommitdiffstats
path: root/views/error.ejs
blob: 838da5bbd19eb3f7b42c61e071db7ba779ec048c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
    <title>Page not found</title>
    <link rel="stylesheet" href="/css/globalstyles.css">
</head>
<body>
    <div id="main-container">
        <%- include('partials/navbar') %>
        <div id="content-container">
            <div id="content">
                <h1>Page not found</h1>
            </div>
        </div>
    </div>
</body>
</html>