Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zwbetz-gh/papercss-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/post-list.html')
-rw-r--r--layouts/partials/post-list.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/layouts/partials/post-list.html b/layouts/partials/post-list.html
index 9301122..7f0e2f9 100644
--- a/layouts/partials/post-list.html
+++ b/layouts/partials/post-list.html
@@ -1,11 +1,12 @@
<h1>{{ .Title }}</h1>
-{{ range where .Pages.ByPublishDate.Reverse "Section" "post" }}
- <h2 class="post-list {{ if ne .Params.summary false }}summary{{ end }}">
+{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
+{{ range $pages.ByPublishDate.Reverse }}
+ <h2 class="post-list {{ if ne .Params.show_summary false }}summary{{ end }}">
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</h2>
- {{ if ne .Params.summary false }}
+ {{ if ne .Params.show_summary false }}
{{ .Summary }}
{{ end }}
{{ end }} \ No newline at end of file