Add extra_foot.html.

This commit is contained in:
tastytea 2019-11-24 18:40:56 +01:00
parent 41804ba969
commit 4c3f2e6e75
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
3 changed files with 6 additions and 2 deletions

View File

@ -50,8 +50,10 @@ Please take a look at the link:{uri-slick-example}[configuration example for
Slick]. It is valid for nocolor too.
You can add things to the end of the `<head>` section by overwriting the partial
template `extra-head.html`. The common way to do it is to create
`layouts/partials/extra_head.html`.
template `extra-head.html` or above the footer by overwriting
`extra_foot.html`. The common way to do it is to create
`layouts/partials/extra_head.html` or `layouts/partials/extra_foot.html`,
respectively.
If you want source code highlighting, take a look at
link:{uri-tomorrow-pygments}[tomorrow-pygments].

View File

@ -23,6 +23,7 @@
{{ partial "header.html" . }}
{{ block "main" . }}{{ end }}
{{ partial "extra_foot.html" . }}
{{ partial "footer.html" . }}
</body>
</html>

View File

@ -0,0 +1 @@
<!-- You can overwrite this partial to put extra stuff above the footer. -->