asw/site/layouts/partials/nav.html
Ludo 219cc91dc2
fix: use hugo.Data instead of deprecated .Site.Data
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 18:08:59 +02:00

8 lines
278 B
HTML

<nav>
<ul><li><a href="/"><strong>{{ .Site.Title }}</strong></a></li></ul>
<ul>
{{- range sort hugo.Data.nav "weight" }}
<li><a href="{{ .url }}"{{ if eq (relURL .url) $.RelPermalink }} aria-current="page"{{ end }}>{{ .name }}</a></li>
{{- end }}
</ul>
</nav>