aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/page.ejs
blob: 331611a3570f36ac9dad1e63a946e07437b98eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
    <title><%= title %></title>
    <link rel="stylesheet" href="/css/globalstyles.css">
</head>
<body>
    <div id="main-container">
        <%- include('partials/header') %>
        <div id="content">
            <%- content %>
            <hr>
            <span class=footer><a href="https://github.com/LMBishop/website">GitHub</a> | Page built: <%= buildTime %> | <a href="/special/purge/<%= path %>">Purge this page</a></span>
        </div>
    </div>
</body>
</html>