diff options
author | Jordi Bares <jordibares@hotmail.com> | 2019-04-02 22:29:37 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-04-09 22:31:24 +0200 |
commit | 3742e6f0f48a66a64ada190d3aa98a6fc211ee24 (patch) | |
tree | de2720d328eb124c03d68742c5e1455d74998be7 | |
parent | 629c4bb1d4857086db8a9b39baead24c2af809a9 (diff) |
Change footer inject below the body
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | layouts/docs/baseof.html | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -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> |