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

post-list.html « partials « layouts - github.com/zwbetz-gh/papercss-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f0e2f963b74bf69c767919a266ef08fd0f8f4f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<h1>{{ .Title }}</h1>
{{ $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.show_summary false }}
    {{ .Summary }}
  {{ end }}
{{ end }}