gcg-website/layouts/wettbewerbe/list.html

17 lines
387 B
HTML
Raw Normal View History

2022-03-18 13:35:57 +01:00
{{ define "main" }}
2023-06-11 21:13:11 +02:00
<section class="section">
2022-03-18 13:35:57 +01:00
<div class="container">
{{ partial "filter-controls" . }}
2022-03-18 13:35:57 +01:00
<div class="row filtr-container">
{{ range .Data.Pages }}
2023-07-29 13:16:25 +02:00
<div data-category="{{ .Params.category | urlize }}" class="col-lg-4 col-sm-6 filtr-item">
{{ partial "card-category" . }}
2022-03-18 13:35:57 +01:00
</div>
{{ end }}
</div>
</div>
</section>
{{ end }}