summaryrefslogtreecommitdiffstats
path: root/_layouts/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html21
1 files changed, 6 insertions, 15 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index b6c79a4..628b523 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,22 +1,13 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en-us">
- {% include header.html %}
- <body>
- {% include nav.html %}
+ {% include head.html %}
- <main>
- <div class="container">
- <div class="container-2">
- <h2 class="center" id="title">{{ page.title | upcase }}</h2>
- <h5 class="center">{{ page.date | date_to_long_string | upcase }}</h5>
- <br>
- <div class="twocol justify">{{ content }}</div>
- </div>
- </div>
- </main>
+ <body>
+
+ {% include nav.html %}
- {% include foot.html %}
+ <article>{{ content }}</article>
</body>
</html>