Omphaloskepsis-2/layouts/partials/header/site-nav.html

8 lines
224 B
HTML
Raw Normal View History

2022-11-10 22:48:02 -07:00
<nav class="site-header__nav">
<ul>
{{ range ( where .Site.Sections.ByTitle "Type" "in" site.Params.mainSections ) }}
2023-06-30 21:16:59 -06:00
<li><a href="{{ .RelPermalink }}">{{ .Title | safeHTML }}</a></li>
2022-11-10 22:48:02 -07:00
{{ end }}
</ul>
</nav>