secluded/themes/secluded/layouts/partials/header.html

12 lines
344 B
HTML
Raw Normal View History

2021-06-24 07:30:38 +00:00
<div class="title-wrapper">
<span class="title"><a href="{{ .Site.BaseURL }}">{{ $.Site.Title }}</a></span>
<span class="menu">
<ul>
{{- $currentPage := . -}}
{{ range .Site.Menus.main -}}
<li><a href="{{ .URL | absLangURL }}">{{ .Name }}</a></li>
{{- end }}
</ul>
</span>
</div>