summaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorJuan Pablo Valencia <juan.valencia10a@gmail.com>2024-11-23 13:07:57 +0200
committerJuan Pablo Valencia <juan.valencia10a@gmail.com>2024-11-23 13:07:57 +0200
commit8f57acc3040b864b0ed3a9890529307b5ca310f2 (patch)
tree12f6de4aa68d09826c9cb5af533d6660cf90162f /layouts
parent9d892aa386eebccb380d17924b8393f25b0d2e3f (diff)
move math block to baseof.html
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/baseof.html6
-rw-r--r--layouts/partials/footer.html4
2 files changed, 5 insertions, 5 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 08a2d25..462b2e8 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -27,7 +27,11 @@
<footer>
{{ partial "footer.html" . }}
</footer>
-
+
+ {{ if .Param "math" }}
+ {{ partialCached "math.html" . }}
+ {{ end }}
+
</body>
<script>
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index e8f0096..579e50a 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -12,7 +12,3 @@
<p>{{ . | markdownify }}</p>
{{ end }}
{{ end }}
-
-{{ if .Param "math" }}
-{{ partialCached "math.html" . }}
-{{ end }} \ No newline at end of file