gcg-website/layouts/cantorpreis/list.html

20 lines
356 B
HTML
Raw Normal View History

2020-07-09 17:43:11 +02:00
{{ define "main" }}
2020-07-14 09:15:47 +02:00
<!-- teachers -->
2020-07-09 17:43:11 +02:00
<section class="section">
<div class="container">
2020-07-14 09:15:47 +02:00
<!-- teacher list -->
2020-07-30 17:37:15 +02:00
<div class="row">
2020-07-09 17:43:11 +02:00
<!-- teacher -->
2020-07-14 09:15:47 +02:00
{{ range .Data.Pages }}
2020-07-30 17:37:15 +02:00
<div class="col-lg-4 col-sm-6">
2020-07-14 09:15:47 +02:00
{{ .Render "cantorpreis" }}
2020-07-09 17:43:11 +02:00
</div>
{{ end }}
</div>
</div>
</section>
2020-07-14 09:15:47 +02:00
<!-- /teachers -->
2020-07-09 17:43:11 +02:00
2020-07-14 09:15:47 +02:00
{{ end }}