aboutsummaryrefslogtreecommitdiff
path: root/_layouts/layout.html
diff options
context:
space:
mode:
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