Skip to content

Commit

Permalink
Remove redundant downcase from _layouts/categories.html (mmistakes#4531)
Browse files Browse the repository at this point in the history
  • Loading branch information
eabneka authored and minyoongi96 committed Aug 26, 2024
1 parent 61e026b commit 1207e1e
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 1207e1e

Please # to comment.