brainbaking/layouts/shortcodes/archive.html

15 lines
354 B
HTML

{{ $year := index .Params 0 }}
Not finding what you're looking for? <a href="/tags">Browse the archives</a>.
<div class="list">
<h2>{{ $year }}</h2>
{{ range (where (where $.Site.Pages "Section" "post") "Date.Year" "eq" $year).GroupByDate "Jan" }}
<h3><a name="{{ .Key }}"></a>{{ .Key }}</h3>
{{ partial "list-ul" . }}
{{ end }}
</div>