From 8d7a7b712f5a4ee49e3687de8fb00f76d7571368 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri, 01 Jul 2022 18:03:04 +0000
Subject: [PATCH] fix: non-SPA fn defs (closes #154)
---
layouts/index.html | 14 +++++---------
1 files changed, 5 insertions(+), 9 deletions(-)
diff --git a/layouts/index.html b/layouts/index.html
index f0cd68e..5053614 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -13,17 +13,13 @@
{{partial "darkmode.html" .}}
</header>
<article>
- {{ if (and $.Site.Data.config.enableToc (not (.Params.disableToc))) }}
- <aside class="mainTOC">
- <h3>Table of Contents</h3>
- {{ .TableOfContents }}
- </aside>
+ {{partial "toc.html" .}}
+ {{partial "textprocessing.html" . }}
+ {{if $.Site.Data.config.enableRecentNotes}}
+ {{partial "recent.html" . }}
{{end}}
- {{- .Content -}}
</article>
- {{partial "footer.html" .}}
- {{partial "popover.html" .}}
+ {{partial "footerIndex.html" .}}
</div>
</body>
</html>
-
--
Gitblit v1.10.0