diff options
-rw-r--r-- | aboutwilson/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aboutwilson/templates/base.html b/aboutwilson/templates/base.html index a427c30..8c4ba57 100644 --- a/aboutwilson/templates/base.html +++ b/aboutwilson/templates/base.html @@ -68,7 +68,7 @@ <h4>Categories</h4> <ul class="list-unstyled my-list-style"> {% for cat, art in categories %} - <li><a href="{{SITEURL}}/category/{{cat | replace(" ", "-") }}.html">{{cat}} ({{art | count}})</a></li> + <li><a href="{{SITEURL}}/category/{{cat | replace(" ", "-") | lower }}.html">{{cat}} ({{art | count}})</a></li> {% endfor %} </ul> </div> |