2021-08-11 05:28:33 +00:00
|
|
|
{{ define "main" }}
|
2022-01-20 03:08:52 +00:00
|
|
|
{{ $toc := and (.Params.showTableOfContents | default (.Site.Params.list.showTableOfContents | default false)) (in .TableOfContents "<ul") }}
|
|
|
|
<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>
|
|
|
|
<section
|
2022-08-18 04:59:46 +00:00
|
|
|
class="{{ if $toc -}}
|
2022-01-20 03:08:52 +00:00
|
|
|
mt-12
|
|
|
|
{{- else -}}
|
|
|
|
mt-0
|
2022-08-18 04:59:46 +00:00
|
|
|
{{- end }} prose flex max-w-full flex-col dark:prose-invert lg:flex-row"
|
2022-01-20 03:08:52 +00:00
|
|
|
>
|
|
|
|
{{ if $toc }}
|
2022-08-18 04:59:46 +00:00
|
|
|
<div class="order-first px-0 lg:order-last lg:max-w-xs ltr:lg:pl-8 rtl:lg:pr-8">
|
|
|
|
<div class="toc ltr:pl-5 rtl:pr-5 lg:sticky lg:top-10">
|
2022-01-20 03:08:52 +00:00
|
|
|
{{ partial "toc.html" . }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
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>
|
2022-11-08 01:38:24 +00:00
|
|
|
{{ if .Data.Pages }}
|
2021-08-16 04:04:56 +00:00
|
|
|
<section>
|
2022-10-13 21:20:34 +00:00
|
|
|
{{ if $.Params.groupByYear | default ($.Site.Params.list.groupByYear | default true) }}
|
|
|
|
{{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}
|
2022-08-18 04:59:46 +00:00
|
|
|
<h2 class="mt-12 text-2xl font-bold text-neutral-700 first:mt-8 dark:text-neutral-300">
|
2021-08-22 23:49:59 +00:00
|
|
|
{{ .Key }}
|
|
|
|
</h2>
|
2022-08-18 04:59:46 +00:00
|
|
|
<hr class="border-dotted w-36 border-neutral-400" />
|
2022-10-13 21:20:34 +00:00
|
|
|
{{ range .Pages }}
|
|
|
|
{{ partial "article-link.html" . }}
|
|
|
|
{{ end }}
|
2021-08-16 04:04:56 +00:00
|
|
|
{{ end }}
|
2022-10-13 21:20:34 +00:00
|
|
|
{{ else }}
|
2022-11-14 02:22:15 +00:00
|
|
|
{{ range (.Paginate .Pages).Pages }}
|
2021-08-16 04:04:56 +00:00
|
|
|
{{ partial "article-link.html" . }}
|
|
|
|
{{ end }}
|
2021-08-16 00:42:48 +00:00
|
|
|
{{ end }}
|
2021-08-16 04:04:56 +00:00
|
|
|
</section>
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
{{ else }}
|
2022-01-20 03:08:52 +00:00
|
|
|
<section class="mt-10 prose dark:prose-invert">
|
2021-08-16 04:04:56 +00:00
|
|
|
<p class="py-8 border-t">
|
2021-08-17 06:48:08 +00:00
|
|
|
<em>{{ i18n "list.no_articles" | emojify }}</em>
|
2021-08-16 04:04:56 +00:00
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
2021-08-11 05:28:33 +00:00
|
|
|
{{ end }}
|