mirror of https://github.com/jpanther/congo.git
14 lines
426 B
HTML
14 lines
426 B
HTML
{{ define "main" }}
|
|
{{ partial "section-header.html" . }}
|
|
<section>
|
|
{{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}
|
|
<h2 class="mt-12 text-2xl font-bold first:mt-8">{{ .Key }}</h2>
|
|
<hr class="border-dotted border-neutral-400 w-36" />
|
|
{{ range .Pages }}
|
|
{{ partial "article-link.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</section>
|
|
{{ partial "pagination.html" . }}
|
|
{{ end }}
|