🔀 Merge pull request #289 from michaeldorner:dev

Fix error calling Paginate
pull/353/head
James Panther 2022-11-08 12:32:08 +11:00 committed by GitHub
commit 8941a33a3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 10 deletions

View File

@ -13,16 +13,31 @@
</section> </section>
{{ end }} {{ end }}
<section> <section>
{{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }} {{ if .Data.Pages }}
{{ if $.Params.groupByYear | default ($.Site.Params.list.groupByYear | default true) }} <section>
<h2 class="mt-12 text-2xl font-bold text-neutral-700 first:mt-8 dark:text-neutral-300"> {{ if $.Params.groupByYear | default ($.Site.Params.list.groupByYear | default true) }}
{{ .Key }} {{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}
</h2> <h2 class="mt-12 text-2xl font-bold text-neutral-700 first:mt-8 dark:text-neutral-300">
<hr class="border-dotted w-36 border-neutral-400" /> {{ .Key }}
{{ end }} </h2>
{{ range .Pages }} <hr class="border-dotted w-36 border-neutral-400" />
{{ partial "article-link.html" . }} {{ range .Pages }}
{{ end }} {{ partial "article-link.html" . }}
{{ end }}
{{ end }}
{{ else }}
{{ range .Paginator.Pages }}
{{ partial "article-link.html" . }}
{{ end }}
{{ end }}
</section>
{{ partial "pagination.html" . }}
{{ else }}
<section class="mt-10 prose dark:prose-invert">
<p class="py-8 border-t">
<em>{{ i18n "list.no_articles" | emojify }}</em>
</p>
</section>
{{ end }} {{ end }}
</section> </section>
{{ partial "pagination.html" . }} {{ partial "pagination.html" . }}