diff --git a/README.md b/README.md index 0eabf82..e602a4f 100644 --- a/README.md +++ b/README.md @@ -27,3 +27,6 @@ facebook = "example" twitter = "tonyblyler" linkedin = "tblyler" ``` + +You can also append your own `` and footer elements (just before the ``). +Do so by creating `layouts/partials/foot.html` and `layouts/partials/head.html` files in your hugo directory before compilation. diff --git a/layouts/partials/foot.html b/layouts/partials/foot.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index c7ea9c8..b901dd4 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -8,5 +8,6 @@ {{ end }} Top + {{ partial "foot.html" . }} diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 437531b..bd153b8 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -9,6 +9,7 @@ {{ if .RSSlink }} {{ end }} + {{ partial "head.html" . }}