Welcome to mirror list, hosted at ThFree Co, Russian Federation.

series.html « shortcodes « layouts - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dea51413256d7b23005a22ce1cec34d801b1dc45 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ $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 }}