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

13 lines
405 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" ) }}
2023-07-01 03:16:59 +00:00
{{ if ( not ( eq .Key "0001" ) ) }}
{{ partial "header-tile.html" . }}
{{ range .Pages }}
2023-08-22 10:14:33 +00:00
{{ if ( not ( .IsDescendant ( .GetPage "/cv/roles" ) ) ) }}
{{ partial "item-tile.html" . }}
{{ end }}
2023-07-01 03:16:59 +00:00
{{ end }}
2022-11-11 05:48:02 +00:00
{{ end }}
{{ end }}
</section>