mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
47 lines
No EOL
1.6 KiB
HTML
47 lines
No EOL
1.6 KiB
HTML
{{- partialCached "page-meta.hugo" . .RelPermalink }}
|
|
{{- partial "header.html" . }}
|
|
<article>
|
|
<header class="headline">
|
|
</header>
|
|
{{- $page := . }}
|
|
|
|
{{- $title := default (default .Data.Plural (i18n .Data.Plural)) .Title }}
|
|
<h1 id="{{ $title | plainify | anchorize }}">{{ $title }}</h1>
|
|
{{- $lastCapital := "" }}
|
|
{{- $terms := slice }}
|
|
{{- range .Data.Terms }}
|
|
{{- $terms = $terms | append (dict "Title" (default .Page.Data.Term .Page.Title) "Term" . )}}
|
|
{{- if not .Page.Title }}
|
|
{{- warnf "%q: You have not given a 'title' in the frontmatter of your term page, the urlized title will be used instead" .Page.File.Filename }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- range sort $terms ".Title" }}
|
|
{{- $capital := substr .Title 0 1 | upper }}
|
|
{{- $len := 0 }}
|
|
{{- range .Term.Pages }}
|
|
{{- $c:=""}}{{/* count pages of term */}}
|
|
{{- if and .Title .RelPermalink (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableTagHiddenPages true) ) }}
|
|
{{- $len = add $len 1 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if $len }}
|
|
{{- if ne $lastCapital $capital }}
|
|
{{- if ne $lastCapital "" }}
|
|
</ul>
|
|
{{- end }}
|
|
<h2 id="{{ $capital | plainify | anchorize }}">{{ $capital }}</h2>
|
|
<ul class="columnize">
|
|
{{- end }}
|
|
{{- $c:=""}}{{/* display terms of a taxonomy */}}
|
|
<li><a href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .Term.Page) }}">{{ .Title }}</a> ({{ $len }})</li>
|
|
{{- $lastCapital = $capital }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if ne $lastCapital "" }}
|
|
</ul>
|
|
{{- end }}
|
|
|
|
<footer class="footline">
|
|
</footer>
|
|
</article>
|
|
{{- partial "footer.html" . }} |