Skip to content

Commit

Permalink
Remove redundant downcase from _layouts/categories.html (#4531)
Browse files Browse the repository at this point in the history
  • Loading branch information
eabneka authored Apr 22, 2024
1 parent 9770b66 commit 6eaee03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _layouts/categories.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{% for i in (1..categories_max) reversed %}
{% for category in site.categories %}
{% if category[1].size == i %}
<section id="{{ category[0] | slugify | downcase }}" class="taxonomy__section">
<section id="{{ category[0] | slugify }}" class="taxonomy__section">
<h2 class="archive__subtitle">{{ category[0] }}</h2>
<div class="entries-{{ entries_layout }}">
{% for post in category.last %}
Expand Down

0 comments on commit 6eaee03

Please sign in to comment.