Fix links to tag pages in blogposts when tag is not lowercase

This commit is contained in:
Simon Böhm 2017-07-04 10:11:18 +02:00 committed by Marcus Eisele
parent abd037068d
commit f19cbacb2d
2 changed files with 2 additions and 1 deletions

View file

@ -14,3 +14,4 @@ In alphabetical order:
11. Panos Sakkos <panos.sakkos@protonmail.com>
12. Prashant Solanki <prs.solanki@live.com>
13. Sergey Lysenko <soulwish.ls@gmail.com>
14. Simon Böhm <simonboehm@gmx.de>

View file

@ -27,7 +27,7 @@
<a href="{{site.baseurl}}{{page.url }}#disqus_thread">Comments</a>
<br />
{% for tag in page.tags %}
<a class="tag" href="{{site.baseurl}}/tags/{{tag}}.html">#{{ tag }}</a>
<a class="tag" href="{{site.baseurl}}/tags/{{tag | downcase}}.html">#{{ tag }}</a>
{% endfor %}
</small>
</h4>