blob: 2bd42621e266b400d7a721da0a5395ec0086f7c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!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">
<%- content %>
<hr>
<span class=footer><a href="https://github.com/LMBishop/website">GitHub</a> | <a href="/<%= path %>.wiki">View raw</a> | Page built: <%= buildTime %> | <a href="/special/info/<%= path %>">Page info</a></span>
</div>
</div>
</div>
</body>
</html>
|