2021-08-11 05:28:33 +00:00
|
|
|
{{ define "main" }}
|
2022-01-20 03:08:52 +00:00
|
|
|
<header>
|
2022-05-26 01:43:19 +00:00
|
|
|
{{ if .Params.showBreadcrumbs | default (.Site.Params.list.showBreadcrumbs | default false) }}
|
2022-01-20 03:08:52 +00:00
|
|
|
{{ partial "breadcrumbs.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
<h1 class="mt-0 text-4xl font-extrabold text-neutral-900 dark:text-neutral">{{ .Title }}</h1>
|
|
|
|
</header>
|
|
|
|
{{ if .Content }}
|
2022-08-18 04:59:46 +00:00
|
|
|
<section class="flex flex-col max-w-full mt-0 prose dark:prose-invert lg:flex-row">
|
2022-11-08 01:55:31 +00:00
|
|
|
<div class="min-w-0 min-h-0 max-w-prose grow">
|
2022-01-20 03:08:52 +00:00
|
|
|
{{ .Content | emojify }}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
2021-08-11 05:28:33 +00:00
|
|
|
<section>
|
2022-09-02 09:45:55 +00:00
|
|
|
{{ if .Data.Pages }}
|
2022-11-08 01:31:05 +00:00
|
|
|
<section>
|
2022-09-02 09:45:55 +00:00
|
|
|
{{ 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>
|
|
|
|
<hr class="border-dotted w-36 border-neutral-400" />
|
|
|
|
{{ range .Pages }}
|
|
|
|
{{ partial "article-link.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
{{ range .Paginator.Pages }}
|
|
|
|
{{ partial "article-link.html" . }}
|
|
|
|
{{ end }}
|
2022-09-02 09:45:55 +00:00
|
|
|
{{ end }}
|
2022-11-08 01:31:05 +00:00
|
|
|
</section>
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
{{ else }}
|
|
|
|
<section class="mt-10 prose dark:prose-invert">
|
|
|
|
<p class="py-8 border-t">
|
|
|
|
<em>{{ i18n "list.no_articles" | emojify }}</em>
|
|
|
|
</p>
|
|
|
|
</section>
|
2021-08-11 05:28:33 +00:00
|
|
|
{{ end }}
|
|
|
|
</section>
|
|
|
|
{{ end }}
|