diff options
| author | Corné Haasjes <c.haasjes@lumc.nl> | 2025-04-01 21:23:08 +0200 | 
|---|---|---|
| committer | Corné Haasjes <c.haasjes@lumc.nl> | 2025-04-01 21:23:08 +0200 | 
| commit | e8b33279b77a92e64d431904a49005348060dfd9 (patch) | |
| tree | ece1010752bcf238fe22e2f7ae7f1e7d334f5b57 /layouts/_default/baseof.html | |
| parent | 160d998fa0f96219ae9b7e45d3250ea1d10edede (diff) | |
Put body_end above footer
Diffstat (limited to 'layouts/_default/baseof.html')
| -rw-r--r-- | layouts/_default/baseof.html | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 4ff7215..2decab0 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -24,6 +24,9 @@      </main>    </div> +  {{/* Body end hook */}} +  {{ partial "functions/get_hook.html" (dict "hook" "body_end" "context" .) }} +    <footer>      {{ partial "footer.html" . }}    </footer> @@ -31,9 +34,6 @@    {{ if .Param "math" }}    {{ partialCached "math.html" . }}    {{ end }} - -  {{/* Body end hook */}} -  {{ partial "functions/get_hook.html" (dict "hook" "body_end" "context" .) }}  </body>  <script src="{{ "js/theme-switch.js" | relURL }}"></script> | 
