1
Fork 0
theorangeone.net-legacy/layouts/partials/nav_pages.html

11 lines
287 B
HTML

{{ $home := .Site.GetPage "home" }}
{{ range where .Site.Pages.ByTitle "Kind" "section" }}
{{ if eq .Parent $home }}
<li class="nav-item">
<a href="{{ .Permalink }}" class="nav-link">
<code>~/{{ urlize .LinkTitle }}</code>
</a>
</li>
{{ end }}
{{ end }}