1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 11:56:20 -04:00
jarv.is/layouts/notes/list.html

19 lines
386 B
HTML

{{ define "main" }}
<div id="archive">
{{ 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 }}
</div>
{{ end }}