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

13 lines
424 B
HTML
Raw Normal View History

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