Add option to toggle groupByYear on list pages

This commit is contained in:
James Panther
2021-08-16 10:42:48 +10:00
parent e293f4c509
commit b9f61f6896
3 changed files with 8 additions and 2 deletions
+4 -2
View File
@@ -2,8 +2,10 @@
{{ partial "section-heading.html" . }}
<section>
{{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}
<h2 class="mt-12 text-2xl font-bold first:mt-8">{{ .Key }}</h2>
<hr class="border-gray-400 border-dotted w-36" />
{{ if $.Site.Params.list.groupByYear }}
<h2 class="mt-12 text-2xl font-bold first:mt-8">{{ .Key }}</h2>
<hr class="border-gray-400 border-dotted w-36" />
{{ end }}
{{ range .Pages }}
{{ partial "article-link.html" . }}
{{ end }}