blog/themes/stack/layouts/index.html
moonlightwatch c1bd7b2b5f
All checks were successful
Build and Upload / Explore-Gitea-Actions (push) Successful in 3m28s
fix: 按发布日志降序排列
2025-04-22 16:57:28 +08:00

20 lines
701 B
HTML

{{ define "main" }}
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
{{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }}
{{ $filtered := ($pages | intersect $notHidden) }}
{{ $sorted := $filtered.ByPublishDate.Reverse }}
{{ $pag := .Paginate ($sorted) }}
<section class="article-list">
{{ range $index, $element := $pag.Pages }}
{{ partial "article-list/default" . }}
{{ end }}
</section>
{{- partial "pagination.html" . -}}
{{- partial "footer/footer" . -}}
{{ end }}
{{ define "right-sidebar" }}
{{ partial "sidebar/right.html" (dict "Context" . "Scope" "homepage") }}
{{ end }}