etch/layouts/partials/header.html

13 lines
350 B
HTML
Raw Normal View History

2020-05-15 02:48:11 -04:00
<header id="banner">
2020-05-15 17:35:58 -04:00
<h2><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h2>
2020-05-15 02:48:11 -04:00
<nav>
<ul>
2020-10-11 16:39:37 -04:00
{{ range .Site.Menus.main.ByWeight -}}
2020-05-15 02:48:11 -04:00
<li>
{{ .Pre }}<a href="{{ .URL }}" title="{{ .Title }}">{{- .Name -}}</a>{{ .Post }}
2020-05-15 02:48:11 -04:00
</li>
2020-10-11 16:39:37 -04:00
{{- end }}
2020-05-15 02:48:11 -04:00
</ul>
</nav>
</header>