Fix overzealous URL encoding
Alan Pearce alan@alanpearce.eu
Fri, 23 Jun 2023 14:01:14 +0200
4 files changed, 7 insertions(+), 7 deletions(-)
M themes/bear/templates/header.html → themes/bear/templates/header.html
@@ -1,7 +1,7 @@ <a class="skip" href="#content">Skip to main content</a> <header> <h2> - <a href="{{ config.base_url }}" class="title"> + <a href="{{ config.base_url | safe }}" class="title"> {{ config.title }} </a> </h2>
M themes/bear/templates/section.html → themes/bear/templates/section.html
@@ -16,7 +16,7 @@ <time datetime='{{ page.date | date(format='%+') }}' pubdate> {{ page.date | date(format=config.extra.date_format) }} </time> </span> - <a href="{{ page.permalink }}">{{ page.title }}</a> + <a href="{{ page.path | urlencode | safe }}">{{ page.title }}</a> </li> {% else %} <li> @@ -28,7 +28,7 @@ <small> <div> {% set tags = get_taxonomy(kind="tags") %} {% for post in tags.items %} - <a href="{{ post.permalink }}">#{{ post.name }}</a> + <a href="{{ post.path | urlencode | safe }}">#{{ post.name }}</a> {% endfor %} </div> </small>
M themes/bear/templates/taxonomy_single.html → themes/bear/templates/taxonomy_single.html
@@ -22,7 +22,7 @@ <time datetime='{{ page.date | date(format='%+') }}' pubdate> {{ page.date | date(format=config.extra.date_format) }} </time> </span> - <a href="{{ page.permalink }}">{{ page.title }}</a> + <a href="{{ page.path | urlencode | safe }}">{{ page.title }}</a> </li> {% else %} <li>