1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 15:45:33 -04:00
Files
jarv.is/layouts/notes/list.html
2019-03-31 13:29:52 -04:00

17 lines
360 B
HTML

{{ define "main" }}
{{ range .Data.Pages.GroupByDate "2006" }}
<div class="year">
<h2>{{ .Key }}</h2>
<ul>
{{ range .Pages }}
<li class="item">
<div class="date">{{ .Date.Format "Jan 2" }}</div>
<div class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></div>
</li>
{{ end }}
</ul>
</div>
{{ end }}
{{ end }}