From b5f0147af42c9aeb1655188c119d67d2fe8c5058 Mon Sep 17 00:00:00 2001 From: Malik Butler Date: Tue, 3 Apr 2018 12:56:09 -0400 Subject: [PATCH] created blank layout and modified posts layout to inherit from blank --- _layouts/blank.html | 38 ++++++++++++++++++++++++++++++++++++++ _layouts/post.html | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 _layouts/blank.html diff --git a/_layouts/blank.html b/_layouts/blank.html new file mode 100644 index 0000000..8ab2fe0 --- /dev/null +++ b/_layouts/blank.html @@ -0,0 +1,38 @@ + + + + + + + + +{% seo %} + + + + +
+
+

{{ site.title | default: site.github.repository_name }}

+

{{ site.description | default: site.github.project_tagline }}

+
+
+ +
+
+ {{ content }} +
+
+ + {% if site.google_analytics %} + + {% endif %} + + diff --git a/_layouts/post.html b/_layouts/post.html index 0676aff..36dc0cc 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,5 +1,5 @@ --- -layout: default +layout: blank --- {{ page.date | date: "%-d %B %Y" }}