Omphaloskepsis-2/layouts/partials/items-grid.html

11 lines
317 B
HTML
Raw Normal View History

2022-11-10 22:48:02 -07:00
<section class="site-content__body">
{{ range ( ( where .Pages "Draft" false ).GroupByPublishDate "2006" ) }}
2023-06-30 21:16:59 -06:00
{{ if ( not ( eq .Key "0001" ) ) }}
{{ partial "header-tile.html" . }}
{{ range .Pages }}
{{ partial "item-tile.html" . }}
{{ end }}
2022-11-10 22:48:02 -07:00
{{ end }}
{{ end }}
</section>