gcg-website/layouts/wettbewerbe/list.html
2023-07-29 13:16:25 +02:00

17 lines
387 B
HTML

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