From ba746d7cf8f7c1c059a1b6aaa39eb2c3598da4cb Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 22 Oct 2019 14:43:12 +0200 Subject: [PATCH] Adding default layout from primer theme. --- _includes/head.html | 8 ++++++++ _includes/js.html | 4 ++++ _layouts/default.html | 16 ++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 _includes/head.html create mode 100644 _includes/js.html create mode 100644 _layouts/default.html diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..71674b7 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,8 @@ + + + + + + {% seo %} + + diff --git a/_includes/js.html b/_includes/js.html new file mode 100644 index 0000000..9705f45 --- /dev/null +++ b/_includes/js.html @@ -0,0 +1,4 @@ + + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..af5eab3 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,16 @@ + + + {% include head.html %} + +
+ {% if site.title and site.title != page.title %} +

{{ site.title }}

+ {% endif %} + + {{ content }} + + {% include footer.html %} +
+ {% include js.html %} + +