diff --git a/data/config.yaml b/data/config.yaml
index b79ad572..cae94ef4 100644
--- a/data/config.yaml
+++ b/data/config.yaml
@@ -4,6 +4,7 @@ openToc: false
enableLinkPreview: true
enableLatex: true
enableSPA: true
+enableFooter: true
enableContextualBacklinks: true
enableRecentNotes: false
description:
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 6d4ef17b..ddefe75c 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,4 +1,8 @@
+
+
{{partial "backlinks.html" .}}
@@ -7,5 +11,6 @@
{{partial "graph.html" .}}
+{{end}}
{{partial "contact.html" .}}
\ No newline at end of file
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 25120d51..f10ce145 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -63,7 +63,7 @@
const draw = () => {
// NOTE: everything within this callback will be executed for every page navigation. This is a good place to put JavaScript that loads or modifies data on the page.
-
+ {{if $.Site.Data.config.enableFooter}}
const container = document.getElementById("graph-container")
// retry if the graph is not ready
if (!container) return requestAnimationFrame(draw)
@@ -78,7 +78,7 @@
{{$.Site.Data.graphConfig.enableLegend}},
{{$.Site.Data.graphConfig.enableZoom}}
);
-
+ {{end}}
{{if $.Site.Data.config.enableLinkPreview}}
initPopover(
{{strings.TrimRight "/" .Site.BaseURL }},