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
|
|
|
|
class="flex flex-col max-w-full prose lg:flex-row dark:prose-invert {{ if $toc -}}
|
|
|
|
mt-12
|
|
|
|
{{- else -}}
|
|
|
|
mt-0
|
|
|
|
{{- end }}"
|
|
|
|
>
|
|
|
|
{{ if $toc }}
|
|
|
|
<div class="order-first px-0 lg:max-w-xs ltr:lg:pl-8 rtl:lg:pr-8 lg:order-last">
|
|
|
|
<div class="ltr:pl-5 rtl:pr-5 toc lg:sticky lg:top-10">
|
|
|
|
{{ partial "toc.html" . }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
<div class="min-w-0 min-h-0 max-w-prose">
|
|
|
|
{{ .Content | emojify }}
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-08-16 04:04:56 +00:00
|
|
|
{{ if gt .Pages 0 }}
|
|
|
|
<section>
|
|
|
|
{{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}
|
2021-10-26 23:48:29 +00:00
|
|
|
{{ if $.Params.groupByYear | default ($.Site.Params.list.groupByYear | default true) }}
|
2021-08-22 23:49:59 +00:00
|
|
|
<h2 class="mt-12 text-2xl font-bold first:mt-8 text-neutral-700 dark:text-neutral-300">
|
|
|
|
{{ .Key }}
|
|
|
|
</h2>
|
2021-08-20 07:02:08 +00:00
|
|
|
<hr class="border-dotted border-neutral-400 w-36" />
|
2021-08-16 04:04:56 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ range .Pages }}
|
|
|
|
{{ 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 }}
|