Skip to content

Commit 6994674

Browse files
authored
Fix semantic of list of tags in article template (#754)
* Fix semantic of list of tags in article template * Fix semantic of list of tags in article template
1 parent e1c209b commit 6994674

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_includes/templates/default.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<ul class="list-inline mb-1" aria-labelledby="filters_label">
3333
{%- for tag in tags -%}
3434
{%- set tagTranslationKey = 'tags.' + tag -%}
35-
<li class="list-inline-item"><div class="tagType" data-tag="{{ tag }}">{{ tagTranslationKey | translate }}</a></li>
35+
<li class="list-inline-item"><span class="tagType d-inline-block" data-tag="{{ tag }}">{{ tagTranslationKey | translate }}</span></li>
3636
{% endfor -%}
3737
</ul>
3838
{% endif %}

0 commit comments

Comments
 (0)