From a78926ede5a951b2ba48e506c93d25060e240c0e Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu, 11 Aug 2022 18:42:16 +0000
Subject: [PATCH] feat: link previews to page-list (closes #173)
---
layouts/partials/head.html | 40 +++++++++++++++++++++-------------------
1 files changed, 21 insertions(+), 19 deletions(-)
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index acc2efd..6b465da 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -112,25 +112,7 @@
{{if $.Site.Data.config.enableCallouts -}}
addCollapsibleCallouts();
{{ end }}
-
- {{if $.Site.Data.config.enableFooter}}
- const container = document.getElementById("graph-container")
- // retry if the graph is not ready
- if (!container) return requestAnimationFrame(render)
- // clear the graph in case there is anything within it
- container.textContent = ""
-
- const drawGlobal = isHome && {{$.Site.Data.graphConfig.enableGlobalGraph}};
- drawGraph(
- {{strings.TrimRight "/" .Site.BaseURL}},
- drawGlobal,
- {{$.Site.Data.graphConfig.paths}},
- drawGlobal ? {{$.Site.Data.graphConfig.globalGraph}} : {{$.Site.Data.graphConfig.localGraph}}
- );
-
- {{end}}
-
-
+
{{if $.Site.Data.config.enableLinkPreview}}
initPopover(
{{strings.TrimRight "/" .Site.BaseURL }},
@@ -138,6 +120,26 @@
{{$.Site.Data.config.enableLatex}}
)
{{end}}
+
+ {{if $.Site.Data.config.enableFooter}}
+ const footer = document.getElementById("footer")
+ if (footer) {
+ const container = document.getElementById("graph-container")
+ // retry if the graph is not ready
+ if (!container) return requestAnimationFrame(render)
+ // clear the graph in case there is anything within it
+ container.textContent = ""
+
+ const drawGlobal = isHome && {{$.Site.Data.graphConfig.enableGlobalGraph}};
+ drawGraph(
+ {{strings.TrimRight "/" .Site.BaseURL}},
+ drawGlobal,
+ {{$.Site.Data.graphConfig.paths}},
+ drawGlobal ? {{$.Site.Data.graphConfig.globalGraph}} : {{$.Site.Data.graphConfig.localGraph}}
+ );
+
+ }
+ {{end}}
}
const init = (doc = document) => {
--
Gitblit v1.10.0