typo/layouts/partials/header.html
2024-04-24 00:01:25 +02:00

20 lines
423 B
HTML

{{/* Header */}}
<div class="header">
<h1 class="header-title">{{ 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>