Skip to content

Commit

Permalink
Correct spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccacremona committed Feb 22, 2024
1 parent 2a8e20e commit cbefbad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/_includes/tag-filter.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<nav class="posts-filter" aria-label="Featured Tags">
<ul>
<li>
<a class="tag" href="{{ site.baseurl }}/blog/" {% if current == "all" %}aria-current="true"{% endif %}>
<a class="tag" href="{{ site.baseurl }}/blog/"{% if current == "all" %} aria-current="true"{% endif %}>
all
</a>
</li>
{% for tag in site.data.featured_tags %}
<li>
<a class="tag" href="{{ site.baseurl }}/blog/tag/{{ tag | slugify}}/"{% if current == tag %}aria-current="true"{% endif %}>
<a class="tag" href="{{ site.baseurl }}/blog/tag/{{ tag | slugify}}/"{% if current == tag %} aria-current="true"{% endif %}>
{{ tag }}
</a>
</li>
Expand Down

0 comments on commit cbefbad

Please sign in to comment.