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 := . }}
|
|
|
|
|
2024-04-07 21:41:06 +02:00
|
|
|
{{- $title := partial "pageHelper/title.hugo" (dict "page" .) }}
|
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-10-29 23:10:41 +01:00
|
|
|
{{- $lastCapital := "" }}
|
2023-12-01 01:03:51 +01:00
|
|
|
{{- $pages := partialCached "partials/pageHelper/termPages.html" . . }}
|
|
|
|
{{- range $pages }}
|
2023-10-29 23:10:41 +01:00
|
|
|
{{- $capital := substr .Title 0 1 | upper }}
|
|
|
|
{{- if ne $lastCapital $capital }}
|
|
|
|
{{- if ne $lastCapital "" }}
|
|
|
|
</ul>
|
2023-05-19 09:04:44 +02:00
|
|
|
{{- end }}
|
2023-10-29 23:10:41 +01:00
|
|
|
<h2 id="{{ $capital | plainify | anchorize }}">{{ $capital }}</h2>
|
|
|
|
<ul class="columnize">
|
2023-05-19 09:04:44 +02:00
|
|
|
{{- end }}
|
2024-04-24 23:05:13 +02:00
|
|
|
{{- /* display pages of a term */}}
|
2023-10-29 23:49:10 +01:00
|
|
|
{{- $breadcrumb := "" }}
|
|
|
|
{{- if (ne .Page.Site.Params.disableTermBreadcrumbs true) }}
|
2024-04-27 14:38:19 +02:00
|
|
|
{{- $breadcrumb = partial "breadcrumbs.html" (dict "page" .Page "dirOnly" true) | plainify | htmlUnescape | chomp }}
|
2023-10-29 23:49:10 +01:00
|
|
|
{{- end }}
|
2023-10-30 07:27:36 +01:00
|
|
|
<li><a href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" .Page) }}">{{ .Title }}</a>{{ with $breadcrumb }}<div class="breadcrumbs highlightable" title="{{ . }}">{{ . }}</div>{{ end }}</li>
|
2023-10-29 23:10:41 +01:00
|
|
|
{{- $lastCapital = $capital }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if ne $lastCapital "" }}
|
2023-05-19 09:04:44 +02:00
|
|
|
</ul>
|
2023-10-29 23:10:41 +01:00
|
|
|
{{- end }}
|
2023-05-19 09:04:44 +02:00
|
|
|
|
|
|
|
<footer class="footline">
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
{{- partial "footer.html" . }}
|