blob: bca4828e9e732b7a51422d3269261cb7af408fe8 (
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> | <a href="/<%= path %>.wiki">View raw</a> | Page built: <%= buildTime %> | <a href="/special/purge/<%= path %>">Purge this page</a></span>
</div>
</div>
</body>
</html>
|