Omphaloskepsis-2/layouts/partials/items-grid.html
2023-08-22 11:14:33 +01:00

13 lines
405 B
HTML

<section class="site-content__body">
{{ range ( ( where .Pages "Draft" false ).GroupByPublishDate "2006" ) }}
{{ if ( not ( eq .Key "0001" ) ) }}
{{ partial "header-tile.html" . }}
{{ range .Pages }}
{{ if ( not ( .IsDescendant ( .GetPage "/cv/roles" ) ) ) }}
{{ partial "item-tile.html" . }}
{{ end }}
{{ end }}
{{ end }}
{{ end }}
</section>