Files
.gitea
assets
content
data
i18n
layouts
_default
abiturienten
about
anmeldeformular
anmeldung
author
begabte
cantorfora
cantorpreis
forms
ganztagsangebote
kontakt
pages
partials
projektwoche
schulchronik
shortcodes
superhaufen
termine
wettbewerbe
list.html
single.html
404.html
index.html
robots.txt
static
.gitignore
LICENSE
config.yml
gcg-website/layouts/wettbewerbe/list.html

20 lines
436 B
HTML
Raw Normal View History

2022-03-18 13:35:57 +01:00
{{ define "main" }}
<section class="section-sm">
2022-03-18 13:35:57 +01:00
<div class="container">
<div class="row">
{{ .Content }}
</div>
{{ partial "filter-controls" . }}
2022-03-18 13:35:57 +01:00
<div class="row filtr-container">
{{ range .Data.Pages }}
<div data-category="{{ .Params.Category | urlize }}" class="col-lg-4 col-sm-6 filtr-item">
{{ .Render "card-ct" }}
2022-03-18 13:35:57 +01:00
</div>
{{ end }}
</div>
</div>
</section>
{{ end }}