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

14 lines
454 B
HTML
Raw Normal View History

2017-10-28 16:28:45 +01:00
{{ $home := .Site.GetPage "home" }}
2019-04-27 20:42:31 +01:00
{{ $sections := where (where .Site.Pages.ByTitle "Kind" "section") "Parent.File.UniqueID" $home.File.UniqueID }}
2018-01-06 16:36:12 +00:00
{{ $pages := where .Site.RegularPages.ByTitle "Section" "" }}
2017-11-12 15:36:36 +00:00
{{ $nav_pages := union $pages $sections }}
{{ range sort $nav_pages "LinkTitle" }}
2017-11-09 13:30:33 +00:00
<li class="nav-item">
<a href="{{ .RelPermalink }}" class="nav-link">
2017-11-09 13:30:33 +00:00
<code>~/{{ urlize .LinkTitle }}</code>
</a>
2017-10-28 16:28:45 +01:00
</li>
{{ end }}