hugo-typo/layouts/partials/header.html
2024-04-22 13:19:56 +02:00

20 lines
No EOL
402 B
HTML

{{/* Header */}}
<div class="header">
<h1>{{ site.Title }}</h1>
<div class="flex">
{{ $currentPage := . }}
{{ with site.Params.menu }}
{{ range . }}
<p class="small {{ if eq .url $currentPage.Path }} bold {{end}}">
<a href="{{.url}}">
/{{.name }}
</a>
</p>
{{ end }}
{{ end }}
</div>
</div>