Add extra_foot.html.
This commit is contained in:
parent
41804ba969
commit
4c3f2e6e75
@ -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].
|
||||
|
@ -23,6 +23,7 @@
|
||||
|
||||
{{ partial "header.html" . }}
|
||||
{{ block "main" . }}{{ end }}
|
||||
{{ partial "extra_foot.html" . }}
|
||||
{{ partial "footer.html" . }}
|
||||
</body>
|
||||
</html>
|
||||
|
1
layouts/partials/extra_foot.html
Normal file
1
layouts/partials/extra_foot.html
Normal file
@ -0,0 +1 @@
|
||||
<!-- You can overwrite this partial to put extra stuff above the footer. -->
|
Reference in New Issue
Block a user