From 13836cfd7a17651dab3c27691a613771ff99622e Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 12 Nov 2018 16:52:06 +0000 Subject: [PATCH] wiki: Don't show breadcrumbs on index page Signed-off-by: Michael Tremer --- src/templates/wiki/page.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/templates/wiki/page.html b/src/templates/wiki/page.html index f5cd8cff..42572c8f 100644 --- a/src/templates/wiki/page.html +++ b/src/templates/wiki/page.html @@ -13,7 +13,9 @@ {% end block %} {% block main %} - {% module WikiNavbar(page) %} + {% if not request.path == "/" %} + {% module WikiNavbar(page) %} + {% end %}
-- 2.47.3