From 9ca4029ed9909bb0b77e4f9dfbe598ae35348157 Mon Sep 17 00:00:00 2001 From: Kameron Kenny Date: Tue, 15 Jan 2019 14:52:38 -0500 Subject: [PATCH] update layouts --- _includes/footer.html | 12 ++++++++++++ _includes/head.html | 19 +++++++++++++++++++ _includes/header.html | 13 +++++++++++++ _layouts/default.html | 10 ++++++++++ 4 files changed, 54 insertions(+) create mode 100644 _includes/footer.html create mode 100644 _includes/head.html create mode 100644 _includes/header.html create mode 100644 _layouts/default.html diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..58c18d8 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,12 @@ + {% if site.google_analytics %} + + {% endif %} + + diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..338e032 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,19 @@ + + + + + + +{% seo %} + + + + + + + + diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..82ab895 --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,13 @@ + + +
+ +
+
+

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

+

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

+
+ Project maintained by {{ site.github.owner_name }} + Hosted on GitHub Pages +
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..75dc344 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,10 @@ +{% include head.html %} + +{% include header.html %} + {{ content }} + +
+ +
+ +{% include footer.html %}