mirror of
https://github.com/zopiya/blog.git
synced 2025-11-03 12:16:46 +08:00
29 lines
648 B
HTML
29 lines
648 B
HTML
{{/* Header */}}
|
|
|
|
<div class="header">
|
|
|
|
{{ if or (not (.Param "hideHeader")) .IsHome }}
|
|
|
|
<h1 class="header-title">
|
|
<a href="{{ site.BaseURL }}">{{ site.Title }}</a>
|
|
</h1>
|
|
|
|
<div class="flex">
|
|
{{ $currentPage := . }}
|
|
|
|
{{ with site.Params.menu }}
|
|
{{ range . }}
|
|
|
|
<p class="small {{ if eq .name (lower $currentPage.Name) }} bold {{end}}">
|
|
<a href="{{ .url }}" {{ if and (isset . "newTab") .newTab }}target="_blank" rel="noopener noreferrer"{{ end }}>
|
|
/{{.name }}
|
|
</a>
|
|
</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|