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 := . }}
|
|
|
|
|
2024-04-07 19:41:06 +00:00
|
|
|
{{- $title := partial "pageHelper/title.hugo" (dict "page" .) }}
|
2023-09-30 19:45:39 +00:00
|
|
|
<h1 id="{{ $title | plainify | anchorize }}">{{ $title }}</h1>
|
2023-10-28 20:49:55 +00:00
|
|
|
{{- .Content }}
|
2023-10-29 22:10:41 +00:00
|
|
|
{{- $lastCapital := "" }}
|
2023-12-01 00:03:51 +00:00
|
|
|
{{- $pages := partialCached "partials/pageHelper/termPages.html" . . }}
|
|
|
|
{{- range $pages }}
|
2023-10-29 22:10:41 +00:00
|
|
|
{{- $capital := substr .Title 0 1 | upper }}
|
|
|
|
{{- if ne $lastCapital $capital }}
|
|
|
|
{{- if ne $lastCapital "" }}
|
|
|
|
</ul>
|
2023-05-19 07:04:44 +00:00
|
|
|
{{- end }}
|
2023-10-29 22:10:41 +00:00
|
|
|
<h2 id="{{ $capital | plainify | anchorize }}">{{ $capital }}</h2>
|
|
|
|
<ul class="columnize">
|
2023-05-19 07:04:44 +00:00
|
|
|
{{- end }}
|
2024-04-24 21:05:13 +00:00
|
|
|
{{- /* display pages of a term */}}
|
2023-10-29 22:49:10 +00:00
|
|
|
{{- $breadcrumb := "" }}
|
|
|
|
{{- if (ne .Page.Site.Params.disableTermBreadcrumbs true) }}
|
|
|
|
{{- $breadcrumb = (trim ((partial "breadcrumbs.html" (dict "page" .Page "dirOnly" true)) | plainify | htmlUnescape) "\n\r\t ") }}
|
|
|
|
{{- end }}
|
2023-10-30 06:27:36 +00: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 22:10:41 +00:00
|
|
|
{{- $lastCapital = $capital }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if ne $lastCapital "" }}
|
2023-05-19 07:04:44 +00:00
|
|
|
</ul>
|
2023-10-29 22:10:41 +00:00
|
|
|
{{- end }}
|
2023-05-19 07:04:44 +00:00
|
|
|
|
|
|
|
<footer class="footline">
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
{{- partial "footer.html" . }}
|