This repository has been archived on 2022-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
public-web/layouts/partials/menu.html

18 lines
453 B
HTML
Raw Normal View History

2022-10-20 23:55:23 +02:00
<nav class="container mx-auto px-6">
2022-10-21 11:06:50 +02:00
<h2 class="sr-only">{{ i18n "menu_title" }}</h2>
<ul class="flex gap-6">
{{ range site.Menus.main }}
{{ $isActive := false }} {{/* TODO fix */}}
<li>
<a
href="{{ .URL | relLangURL }}"
class="font-bold link {{ if $isActive }}link--active{{ end }}"
{{ if $isActive }}
aria-current="page"
{{ end }}
>{{ .Name }}</a>
</li>
{{ end }}
</ul>
2022-10-20 19:39:49 +02:00
</nav>