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

list.html « _default « layouts - github.com/zwbetz-gh/papercss-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09daefce53a7306792abc96a220b5e1a184ba62e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}

<h1>{{ .Title }}</h1>
{{ range .Pages.ByPublishDate.Reverse }}
<p>
  <a href="{{ .Permalink }}">
    {{ .Title }}
  </a>
</p>
{{ end }}

{{ end }}