This commit is contained in:
marc-kbpm
2022-12-02 19:28:05 +01:00
parent a4d6ab14ff
commit 4286641ec6
49 changed files with 2197 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<nav>
<ul class="flex">
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
<li class="px-4">
<a href="{{ .URL }}" class="font-medium uppercase text-almost-white underline hover:text-salmon{{ if $currentPage.IsMenuCurrent "main" . }} !text-salmon{{ end }}">
{{ .Pre }}
<span>{{ .Name }}</span>
</a>
</li>
{{ end }}
</ul>
</nav>