From e5f3ae6d8e0365772efee7ee06db980cc7126b5c Mon Sep 17 00:00:00 2001
From: romanc <romanc@user.noreply.github.com>
Date: Sun, 12 Apr 2020 22:01:19 +0000
Subject: [PATCH] only print toc if non-empty

---
 layouts/partials/sidebar.html |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index 6030409..6af5f1a 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -12,7 +12,9 @@
         {{- range . }}
         {{- if .IsPage }}
         <h3 class="section_link{{ if eq .RelPermalink $permalink }} active{{ end }}"><a id="docs-{{ anchorize .Title }}" href="{{ .Permalink }}">{{ .Title }}</a></h3>
-        {{- .TableOfContents }}
+        {{- if ne (print .TableOfContents) ""}}
+          {{- .TableOfContents }}
+        {{- end }}
         {{- else }}
         {{- template "tree" (dict "page" $page "section" .) }}
         {{- end }}

--
Gitblit v1.10.0