🐛 fix(html): remove unused self-closing tags (#176)

This commit is contained in:
Donovan Glover
2023-09-24 14:40:18 +00:00
committed by GitHub
parent 9c9ba7f734
commit 93eaaea76c
2 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@
{% for menu in config.extra.menu %}
<li>
{% set trailing_slash = menu.trailing_slash | default(value=true) %}
<a class="nav-links no-hover-padding" href="{{ get_url(path=menu.url, lang=lang, trailing_slash=trailing_slash) }}"/>
<a class="nav-links no-hover-padding" href="{{ get_url(path=menu.url, lang=lang, trailing_slash=trailing_slash) }}">
{{ macros_translate::translate(key=menu.name, default=menu.name, language_strings=language_strings) }}
</a>
</li>