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 %}