aboutsummaryrefslogtreecommitdiffstats
path: root/views/page.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'views/page.ejs')
-rw-r--r--views/page.ejs20
1 files changed, 20 insertions, 0 deletions
diff --git a/views/page.ejs b/views/page.ejs
new file mode 100644
index 0000000..41ee1e2
--- /dev/null
+++ b/views/page.ejs
@@ -0,0 +1,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/purge/<%= path %>">Purge this page</a></span>
+ </div>
+ </div>
+ </div>
+</body>
+</html>