Skip to content
Snippets Groups Projects
list.html 354 B
{{ define "main" }}

  {{ partial "heading.html" . }}

  {{ .Content }}

  {{ range .Pages.GroupByPublishDate "2006" }}
    <h3>{{ .Key }}</h3>
    <ul>
      {{ range .Pages }}
        <li>
          {{ .PublishDate.Format "2006-01-02" }} – <a href="{{ .RelPermalink }}">{{ .Title }}</a>
        </li>
      {{ end }}
    </ul>
  {{ end }}

{{ end }}