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

13 lines
424 B
HTML

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