gcg-website/layouts/wettbewerbe/single.html

19 lines
399 B
HTML
Raw Normal View History

2022-03-18 13:35:57 +01:00
{{ define "main" }}
2023-07-29 13:16:25 +02:00
{{ partial "header-contest" . }}
2022-03-18 13:35:57 +01:00
2023-06-11 21:13:11 +02:00
<section class="section pt-0">
2022-03-18 13:35:57 +01:00
<div class="container">
2023-07-29 13:16:25 +02:00
<h2 class="mb-4">Weitere Wettbewerbe</h2>
2023-04-23 10:48:20 +02:00
<div class="row" data-pagefind-ignore="all">
2024-03-24 16:23:54 +01:00
{{ range partial "data/related" . }}
<div class="col-lg-4 col-sm-6">
{{ partial "card-category" . }}
2022-03-18 13:35:57 +01:00
</div>
{{ end }}
</div>
</div>
</section>
{{ end }}