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
single.html
termine
wettbewerbe
404.html
index.html
robots.txt
static
.gitignore
LICENSE
config.yml
gcg-website/layouts/superhaufen/single.html

23 lines
443 B
HTML
Raw Normal View History

2023-02-28 08:37:51 +01:00
{{ define "main" }}
<section class="section-sm">
2023-02-28 08:37:51 +01:00
<div class="container">
<div class="row">
<div class="col-12 content">
2023-02-28 08:37:51 +01:00
{{ .Content }}
</div>
</div>
</div>
<div class="container">
<div class="row">
{{ range .Params.tiles }}
{{ partial "modal" . }}
2023-02-28 08:37:51 +01:00
<div class="col-lg-4 col-sm-6">
{{ partial "card-icon" . }}
2023-02-28 08:37:51 +01:00
</div>
{{ end }}
</div>
</div>
</section>
{{ end }}