aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordi Bares <jordibares@hotmail.com>2019-04-02 22:29:37 +0100
committerAlex Shpak <alex-shpak@users.noreply.github.com>2019-04-09 22:31:24 +0200
commit3742e6f0f48a66a64ada190d3aa98a6fc211ee24 (patch)
treede2720d328eb124c03d68742c5e1455d74998be7
parent629c4bb1d4857086db8a9b39baead24c2af809a9 (diff)
Change footer inject below the body
-rw-r--r--README.md2
-rw-r--r--layouts/docs/baseof.html4
2 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index f4bdc30..34b8421 100644
--- a/README.md
+++ b/README.md
@@ -168,8 +168,10 @@ There are few empty partials you can override in `layouts/partials/`
| -- | -- |
| `layouts/partials/docs/inject/head.html` | Before closing `<head>` tag |
| `layouts/partials/docs/inject/body.html` | Before closing `<body>` tag |
+| `layouts/partials/docs/inject/footer.html` | Before closing `<body>` tag |
| `layouts/partials/docs/inject/menu-before.html` | At the beginning of `<nav>` menu block |
| `layouts/partials/docs/inject/menu-after.html` | At the end of `<nav>` menu block |
+| `layouts/partials/docs/inject/footer.html` | Before closing `<head>` tag |
## Contributing
diff --git a/layouts/docs/baseof.html b/layouts/docs/baseof.html
index aaf5f57..2741c60 100644
--- a/layouts/docs/baseof.html
+++ b/layouts/docs/baseof.html
@@ -19,13 +19,13 @@
{{ partial "docs/mobile-header" . }}
{{ template "main" . }}
{{ partial "docs/git-footer" . }}
- {{ partial "docs/inject/footer" . }}
</div>
{{ template "toc" . }}
</main>
-
+
{{ partial "docs/inject/body" . }}
+ {{ partial "docs/inject/footer" . }}
{{ template "_internal/google_analytics_async.html" . }}
</body>