congo/layouts/_default/term.html

44 lines
1.5 KiB
HTML
Raw Normal View History

2021-08-11 05:28:33 +00:00
{{ define "main" }}
<header>
{{ if .Params.showBreadcrumbs | default (.Site.Params.list.showBreadcrumbs | default false) }}
{{ partial "breadcrumbs.html" . }}
{{ end }}
<h1 class="mt-0 text-4xl font-extrabold text-neutral-900 dark:text-neutral">{{ .Title }}</h1>
</header>
{{ if .Content }}
2023-12-26 00:56:32 +00:00
<section class="prose mt-0 flex max-w-full flex-col dark:prose-invert lg:flex-row">
<div class="min-h-0 min-w-0 max-w-prose grow">
{{ .Content | emojify }}
</div>
</section>
{{ end }}
2021-08-11 05:28:33 +00:00
<section>
{{ if .Data.Pages }}
2022-11-08 01:31:05 +00:00
<section>
{{ if $.Params.groupByYear | default ($.Site.Params.list.groupByYear | default true) }}
2022-11-08 01:31:05 +00:00
{{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}
<h2 class="mt-12 text-2xl font-bold text-neutral-700 first:mt-8 dark:text-neutral-300">
{{ .Key }}
</h2>
2023-12-26 00:56:32 +00:00
<hr class="w-36 border-dotted border-neutral-400" />
2022-11-08 01:31:05 +00:00
{{ range .Pages }}
{{ partial "article-link.html" . }}
{{ end }}
{{ end }}
{{ else }}
{{ range (.Paginate .Pages).Pages }}
2022-11-08 01:31:05 +00:00
{{ partial "article-link.html" . }}
{{ end }}
{{ end }}
2022-11-08 01:31:05 +00:00
</section>
{{ partial "pagination.html" . }}
{{ else }}
2023-12-26 00:56:32 +00:00
<section class="prose mt-10 dark:prose-invert">
<p class="border-t py-8">
2022-11-08 01:31:05 +00:00
<em>{{ i18n "list.no_articles" | emojify }}</em>
</p>
</section>
2021-08-11 05:28:33 +00:00
{{ end }}
</section>
{{ end }}