mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-28 05:10:31 -04:00
17 lines
354 B
HTML
17 lines
354 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>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ end }} |