about summary refs log tree commit diff
path: root/users/fcuny/notes/layouts/partials/postlist.html
blob: e124482bd40d33ef4d5a68e10970b5771f0fab2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{{ range .GroupByDate "2006" }}
  <h2>{{ .Key }}</h2>
  <ul>
    {{ range .Pages.ByDate }}
    <li>
      <div>
        <a href="{{ .Permalink }}">{{ .Title }}</a>
      </div>
    </li>
    {{ end }}
  </ul>
{{ end }}