hydden/layouts/partials/sections.html

14 lines
296 B
HTML
Raw Normal View History

2019-06-10 20:01:30 +00:00
{{ template "sectionsnav" . }}
{{ define "sectionsnav" }}
{{ $sec := where .Sections ".Params.unlisted" "!=" "true" }}
{{ if gt (len $sec) 0 }}
<ul>
{{ range $sec }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ template "sectionsnav" . }}
</li>
{{ end }}
</ul>
{{ end }}
{{ end }}