Is it possible to define where to insert custom_body.html? Currently, it is inserted after the footer:
<body>
<header>
{{- partial "header.html" . -}}
</header>
<main>
{{- block "main" . }}{{- end }}
</main>
<footer>
{{- partial "footer.html" . -}}
</footer>
<!-- A partial to be overwritten by the user.
Simply place a custom_body.html into
your local /layouts/partials-directory -->
{{- partial "custom_body.html" . -}}
</body>
But if I want to add some commenting system (Disqus, giscus, etc.), its widget will appear after the footer. Of course, I can change baseof.html but I think there is a better solution.
Also, are there plans to support comments out of the box?
Is it possible to define where to insert
custom_body.html
? Currently, it is inserted after the footer:But if I want to add some commenting system (Disqus, giscus, etc.), its widget will appear after the footer. Of course, I can change
baseof.html
but I think there is a better solution.Also, are there plans to support comments out of the box?