aboutsummaryrefslogtreecommitdiff
path: root/_layouts/layout.html
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-01-05 01:00:51 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-01-05 01:00:51 +0100
commit61a68559c3131f8291cb117ad90b37bfebcc7aba (patch)
treeb6116665cde3c5ae60e9a6b5eb4b330ccbc56605 /_layouts/layout.html
initial commit
Diffstat (limited to '_layouts/layout.html')
-rw-r--r--_layouts/layout.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/_layouts/layout.html b/_layouts/layout.html
new file mode 100644
index 0000000..b337d70
--- /dev/null
+++ b/_layouts/layout.html
@@ -0,0 +1,24 @@
+---
+---
+<!DOCTYPE html>
+<html>
+ {% include head.html %}
+ <body>
+ {% include header.html %}
+ <div class="page">
+ <nav>
+ <ul>
+ <li><a href="/">About</a></li>
+ <li class='seperator'>•</li>
+ <li><a href="/projects/">Projects</a></li>
+ <li class='seperator'>•</li>
+ <li><a href="/blog/">Blog</a></li>
+ </ul>
+ </nav>
+ <main>
+ {{ content }}
+ </main>
+ </div>
+ {% include footer.html %}
+ </body>
+</html> \ No newline at end of file