mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 23:48:27 -04:00
20 lines
582 B
HTML
20 lines
582 B
HTML
{{ partial "header.html" . }}
|
|
{{ partial "blog-header.html" . }}
|
|
<main id="archive">
|
|
{{ range (where .Site.RegularPages "Type" "notes").GroupByDate "2006" }}
|
|
<section class="year">
|
|
<h2>{{ .Key }}</h2>
|
|
<ul>
|
|
{{ range .Pages }}
|
|
<li>
|
|
<div class="date">{{ .Date.Format "Jan 2" }}</div>
|
|
<div class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></div>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</section>
|
|
{{ end }}
|
|
</main>
|
|
{{ partial "blog-footer.html" . }}
|
|
{{ partial "footer.html" . }}
|