1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-02 17:34:27 +00:00
GoBlog/templates/menu.gohtml
2020-10-06 19:07:48 +02:00

11 lines
327 B
Plaintext

{{ define "menu" }}
<nav>
{{ with menu .Blog "main" }}
{{ $first := true }}
{{ range $i, $item := .Items }}
{{ if ne $first true }} &bull; {{ end }}<a
href="{{ $item.Link }}">{{ $item.Title }}</a>{{ $first = false }}
{{ end }}
{{ end }}
</nav>
{{ end }}