From b89babe209c1be5eeeb027b17b41757ebde095e7 Mon Sep 17 00:00:00 2001 From: Dmitry Kolosov Date: Mon, 11 Jan 2021 21:39:27 +0300 Subject: [PATCH] add header-extra and footer-extra for overriding --- layouts/partials/footer-extra.html | 1 + layouts/partials/footer.html | 2 ++ layouts/partials/header-extra.html | 1 + layouts/partials/header.html | 2 ++ 4 files changed, 6 insertions(+) create mode 100644 layouts/partials/footer-extra.html create mode 100644 layouts/partials/header-extra.html diff --git a/layouts/partials/footer-extra.html b/layouts/partials/footer-extra.html new file mode 100644 index 0000000..0e22c9a --- /dev/null +++ b/layouts/partials/footer-extra.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index bc3dd13..eca1958 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -21,4 +21,6 @@ {{ partial "themeSwitcher.html" . }} + + {{ partial "footer-extra.html" . }} diff --git a/layouts/partials/header-extra.html b/layouts/partials/header-extra.html new file mode 100644 index 0000000..0e22c9a --- /dev/null +++ b/layouts/partials/header-extra.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/layouts/partials/header.html b/layouts/partials/header.html index f8459c9..e68f4f4 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -11,3 +11,5 @@ {{ else }} {{ end }} + +{{ partial "header-extra.html" . }} \ No newline at end of file