aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/index.ejs
blob: f47b83066c74c31688a601d87f06796a1ada39c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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-container">
            <%- include('partials/navbar') %>
            <div id="content">
                <%- page %>
            </div>
        </div>
    </div>
</body>
</html>