brainbaking/layouts/shortcodes/archive.html

15 lines
337 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") ".Params.date.Year" "eq" $year).GroupByDate "Jan" }}
<h3>{{ .Key }}</h3>
{{ partial "list-ul" . }}
{{ end }}
</div>