all repos — website @ 805b34faf0bbdaf135e16072b8dd9153a24368ad

My website

Fix overzealous URL encoding

Alan Pearce
commit

805b34faf0bbdaf135e16072b8dd9153a24368ad

parent

fe119b75f2b3f8f3ba8c2367c3ec768538edc695

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M themes/bear/templates/section.htmlthemes/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>&nbsp; + <a href="{{ post.path | urlencode | safe }}">#{{ post.name }}</a> {% endfor %} </div> </small>