2023-05-19 07:04:44 +00:00
|
|
|
{{- partialCached "page-meta.hugo" . .RelPermalink }}
|
|
|
|
{{- partial "header.html" . }}
|
|
|
|
<article>
|
2023-05-19 18:44:19 +00:00
|
|
|
<header class="headline">
|
|
|
|
</header>
|
2023-05-19 07:04:44 +00:00
|
|
|
{{- $page := . }}
|
|
|
|
|
|
|
|
{{- $title := i18n .Data.Singular }}
|
|
|
|
{{- if not $title }}
|
2023-06-18 09:13:33 +00:00
|
|
|
{{- $title = .Data.Singular }}
|
2023-05-19 07:04:44 +00:00
|
|
|
{{- end }}
|
2023-05-20 10:20:58 +00:00
|
|
|
{{- $title = printf "%s %s %s" $title (default "::" .Site.Params.titleSeparator) .Title }}
|
2023-05-19 07:04:44 +00:00
|
|
|
<h1 id="{{ $title | anchorize }}">{{ $title }}</h1>
|
2023-05-19 08:15:20 +00:00
|
|
|
<ul class="columnize">
|
2023-05-19 07:04:44 +00:00
|
|
|
{{- range sort .Pages "Title" }}
|
|
|
|
{{- $c:=""}}{{/* display pages of a term */}}
|
|
|
|
{{- if and .Title (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableTagHiddenPages true) ) }}
|
|
|
|
<li><a href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .) }}">{{ .Title }}</a></li>
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<footer class="footline">
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
{{- partial "footer.html" . }}
|