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

8 lines
224 B
HTML
Raw Normal View History

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