From 805b34faf0bbdaf135e16072b8dd9153a24368ad Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 23 Jun 2023 14:01:14 +0200 Subject: Fix overzealous URL encoding --- themes/bear/templates/nav.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'themes/bear/templates/nav.html') diff --git a/themes/bear/templates/nav.html b/themes/bear/templates/nav.html index e006ab1..cf0d9b7 100644 --- a/themes/bear/templates/nav.html +++ b/themes/bear/templates/nav.html @@ -1,10 +1,10 @@ -Home +Home {%- if config.extra.main_menu %} {%- for item in config.extra.main_menu %} {%- if item.url is matching("https?://") %} - {{ item.name }} + {{ item.name }} {%- else %} - {{ item.name }} + {{ item.name }} {%- endif %} {%- endfor %} {%- endif -%} -- cgit 1.4.1