mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 11:56:20 -04:00
21 lines
512 B
HTML
21 lines
512 B
HTML
{{ partial "header.html" . }}
|
|
{{ partial "blog-header.html" . }}
|
|
|
|
<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>
|
|
|
|
{{ partial "blog-footer.html" . }}
|
|
{{ partial "footer.html" . }} |