damnit four

This commit is contained in:
2024-10-28 16:26:25 -05:00
parent 44ad8cb367
commit 7966b0bcff
71 changed files with 4338 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{{ $currentPage := . }}
<nav>
<ul>
{{ range .Site.Menus.main }}
<li>
<a class="{{if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }}active{{end}}" href="{{ .URL | relURL }}">
<i class="fa-li fa {{ .Pre }} fa-lg"></i><span>{{ .Name }}</span>
</a>
</li>
{{ end }}
</ul>
</nav>