25 lines
501 B
HTML
25 lines
501 B
HTML
{{/* Header */}}
|
|
|
|
<div class="header">
|
|
|
|
{{ if or (not (.Param "hideHeader")) .IsHome }}
|
|
|
|
<h1 class="header-title">{{ site.Title }}</h1>
|
|
|
|
<div class="flex">
|
|
{{ $currentPage := . }}
|
|
|
|
{{ with site.Params.menu }}
|
|
{{ range . }}
|
|
<p class="small {{ if eq .name (lower $currentPage.Name) }} bold {{end}}">
|
|
<a href="{{.url}}">
|
|
/{{.name }}
|
|
</a>
|
|
</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div> |