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

12 lines
287 B
HTML
Raw Normal View History

2017-10-28 16:28:45 +01:00
{{ $home := .Site.GetPage "home" }}
{{ range where .Site.Pages.ByTitle "Kind" "section" }}
{{ if eq .Parent $home }}
2017-11-09 13:30:33 +00:00
<li class="nav-item">
<a href="{{ .Permalink }}" class="nav-link">
<code>~/{{ urlize .LinkTitle }}</code>
</a>
2017-10-28 16:28:45 +01:00
</li>
{{ end }}
{{ end }}