about summary refs log tree commit diff
path: root/layouts/_default/list.html
blob: 3423cb6db26b734df998da3ed042e03bec7adfa7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{{ define "main" }}

<h1>{{ .Title }}</h1>
{{ range .Pages.ByPublishDate.Reverse }}
<p>
  <a class="font-125" href="{{ .RelPermalink }}">{{ .Title }}</a>
</p>
{{ end }}

{{ end }}