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

13 lines
459 B
HTML
Raw Normal View History

2022-11-10 22:48:02 -07:00
<section class="site-content__body">
2024-07-23 10:08:36 +02:00
{{ range ( ( where ( where .Pages "Draft" false ) "Params.redact" "ne" true ).GroupByPublishDate "2006" ) }}
2024-02-04 01:40:15 +00:00
{{ if ( not ( eq .Key "0001" ) ) }}
{{ partialCached "header-tile.html" . .Key }}
2023-06-30 21:16:59 -06:00
{{ range .Pages }}
2023-08-22 11:14:33 +01:00
{{ if ( not ( .IsDescendant ( .GetPage "/cv/roles" ) ) ) }}
2024-07-23 10:08:36 +02:00
{{ partialCached "item-tile.html" . .Path }}
2023-08-22 11:14:33 +01:00
{{ end }}
2023-06-30 21:16:59 -06:00
{{ end }}
2022-11-10 22:48:02 -07:00
{{ end }}
{{ end }}
</section>