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/header.html | 2 +- themes/bear/templates/nav.html | 6 +++--- themes/bear/templates/section.html | 4 ++-- themes/bear/templates/taxonomy_single.html | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'themes') diff --git a/themes/bear/templates/header.html b/themes/bear/templates/header.html index d08ea29..18b2318 100644 --- a/themes/bear/templates/header.html +++ b/themes/bear/templates/header.html @@ -1,7 +1,7 @@

- + {{ config.title }}

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 -%} diff --git a/themes/bear/templates/section.html b/themes/bear/templates/section.html index f7567f2..c7f80de 100644 --- a/themes/bear/templates/section.html +++ b/themes/bear/templates/section.html @@ -16,7 +16,7 @@ {{ page.date | date(format=config.extra.date_format) }} - {{ page.title }} + {{ page.title }} {% else %}
  • @@ -28,7 +28,7 @@
    {% set tags = get_taxonomy(kind="tags") %} {% for post in tags.items %} - #{{ post.name }}  + #{{ post.name }} {% endfor %}
    diff --git a/themes/bear/templates/taxonomy_single.html b/themes/bear/templates/taxonomy_single.html index 4fade3f..2798f94 100644 --- a/themes/bear/templates/taxonomy_single.html +++ b/themes/bear/templates/taxonomy_single.html @@ -22,7 +22,7 @@ {{ page.date | date(format=config.extra.date_format) }} - {{ page.title }} + {{ page.title }}
  • {% else %}
  • -- cgit 1.4.1