congo/layouts/_default/term.html

14 lines
426 B
HTML
Raw Normal View History

2021-08-11 05:28:33 +00:00
{{ define "main" }}
{{ partial "section-header.html" . }}
2021-08-11 05:28:33 +00:00
<section>
{{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}
<h2 class="mt-12 text-2xl font-bold first:mt-8">{{ .Key }}</h2>
2021-08-20 07:02:08 +00:00
<hr class="border-dotted border-neutral-400 w-36" />
2021-08-11 05:28:33 +00:00
{{ range .Pages }}
{{ partial "article-link.html" . }}
{{ end }}
{{ end }}
</section>
{{ partial "pagination.html" . }}
{{ end }}