Skip to content
Snippets Groups Projects
Commit 46e9687b authored by Augustin Lemesle's avatar Augustin Lemesle
Browse files

fix downcase

parent c388d4e2
No related branches found
No related tags found
No related merge requests found
......@@ -58,8 +58,8 @@ css: blog
{% if paginator.total_pages > 1 %}
{% if page.category %}
{% assign path = "/category/:cat/page:num.html" | replace: ":cat", page.category %}
{% assign index = "/category/:cat/index.html" | replace: ":cat", page.category %}
{% assign path = "/category/:cat/page:num.html" | replace: ":cat", page.category | downcase %}
{% assign index = "/category/:cat/index.html" | replace: ":cat", page.category | downcase %}
{% else %}
{% assign path = site.paginate_path %}
{% assign index = "/blog/index.html"%}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment