Fork Mainroad

This commit is contained in:
Greg Hellings
2024-04-22 01:38:32 -05:00
parent 45efd643e9
commit 1daa5edd31
102 changed files with 10349 additions and 1 deletions
@@ -0,0 +1,13 @@
{{ $series_name := .Get 0 | urlize }}
{{ range $key, $taxonomy := .Site.Taxonomies.series }}
{{ if eq $key $series_name }}
<ul>
{{ range $taxonomy.Pages.ByDate }}
<li hugo-nav="{{ .RelPermalink }}">
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
</li>
{{ end }}
</ul>
{{ end }}
{{ end }}