aboutsummaryrefslogtreecommitdiff
path: root/_layouts/default.html
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-11-17 21:38:52 -0500
committerAlee <alee14498@gmail.com>2018-11-17 21:38:52 -0500
commit8b116f86f4a6ce0455004bead277770dc605f1c1 (patch)
tree691f6730cedf049226a7c5b770ad22cf561907d5 /_layouts/default.html
parent24b08e4c09d9149ca1b7baf8697329a3ae3eae55 (diff)
downloadpersonal-website-8b116f86f4a6ce0455004bead277770dc605f1c1.tar.gz
personal-website-8b116f86f4a6ce0455004bead277770dc605f1c1.tar.bz2
personal-website-8b116f86f4a6ce0455004bead277770dc605f1c1.zip
Added a default layout and replaced the html with the markdown layout
Diffstat (limited to '_layouts/default.html')
-rw-r--r--_layouts/default.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..0c85d3c
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,16 @@
+---
+---
+
+<HTML>
+ <HEAD>
+ {% include heading.html %}
+ <TITLE>{{ page.title }} | {{ site.title }}</TITLE>
+ </HEAD>
+<BODY>
+ {% include navigator.html %}
+
+ {{ content }}
+
+ {% include footer.html %}
+</BODY>
+</HTML>