From d3e20b8b94c9229e94fccbe54c867efde6847c6e Mon Sep 17 00:00:00 2001
From: Geoffrey Garrett <g.h.garrett13@gmail.com>
Date: Fri, 01 Jul 2022 18:03:52 +0000
Subject: [PATCH] Added optional rendering of code block titles (#148)
---
layouts/index.html | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/layouts/index.html b/layouts/index.html
index 224c997..5053614 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -15,8 +15,11 @@
<article>
{{partial "toc.html" .}}
{{partial "textprocessing.html" . }}
+ {{if $.Site.Data.config.enableRecentNotes}}
+ {{partial "recent.html" . }}
+ {{end}}
</article>
- {{partial "footer.html" .}}
+ {{partial "footerIndex.html" .}}
</div>
</body>
</html>
--
Gitblit v1.10.0