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

index.html « layouts - github.com/zwbetz-gh/papercss-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 544d78cc6c8010cd5f7304684e395e8714072e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}

<h1>{{ .Title }}</h1>
{{ .Content }}
{{ $paginator := .Paginate (where site.RegularPages "Type" "in" site.Params.mainSections) }}

{{ range $paginator.Pages.ByPublishDate.Reverse }}
  <h2 class="post-list {{ if ne .Params.show_summary false }}summary{{ end }}">
    <a href="{{ .RelPermalink }}">
      {{ .Title }}
    </a>
  </h2>
  {{ if ne .Params.show_summary false }}
    {{ .Summary }}
  {{ end }}
{{ end }}
{{ template "partials/pagination.html" . }}
{{ end }}