1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-20 20:12:11 +00:00
seirdy.one/themes/etch-custom/layouts/partials/header.html

15 lines
305 B
HTML
Raw Normal View History

<header id="banner">
2020-11-25 08:43:39 +00:00
<nav>
<ul>
2020-12-12 10:42:45 +00:00
<li class="home">
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
</li>
2020-11-25 08:43:39 +00:00
{{ range .Site.Menus.main.ByWeight -}}
<li>
{{ .Pre }}<a href="{{ .URL }}" title="{{ .Title }}">{{- .Name -}}</a>{{ .Post }}
</li>
{{- end }}
</ul>
</nav>
</header>