gcg-website/layouts/wettbewerbe/list.html
Denys Konovalov ac3bc5b0ed
All checks were successful
website-main / prod-build (push) Successful in 13s
website-main / test-build (push) Successful in 6s
drop filterizr in favor of shuffle (close #258)
2024-01-20 21:52:20 +01:00

18 lines
432 B
HTML

{{ define "main" }}
<section class="section">
<div class="container">
{{ partial "filter-controls" . }}
<div class="filter-container row">
{{ range .Data.Pages }}
<div data-groups="{{ .Params.category | urlize }}" class="col-lg-4 col-sm-6 filter-item">
{{ partial "card-category" . }}
</div>
{{ end }}
<div class="filter-sizer col-1"></div>
</div>
</div>
</section>
{{ end }}