Omphaloskepsis-2/layouts/partials/items-grid.html
2024-07-23 10:08:36 +02:00

13 lines
459 B
HTML

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