2021-08-11 05:28:33 +00:00
|
|
|
{{ define "main" }}
|
2021-08-18 02:54:18 +00:00
|
|
|
{{ partial "section-header.html" . }}
|
2021-08-16 04:04:56 +00:00
|
|
|
{{ if gt .Pages 0 }}
|
|
|
|
<section>
|
|
|
|
{{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}
|
|
|
|
{{ if $.Site.Params.list.groupByYear }}
|
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 }}
|
|
|
|
<section class="mt-10 prose dark:prose-light">
|
|
|
|
<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 }}
|