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