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

26 lines
639 B
HTML

{{ define "main" }}
<section class="section">
<div class="container">
<div class="row mb-5">
<div class="col-md-6 content">
{{ .Content }}
</div>
</div>
<div class="row">
{{ range .Params.elements }}
<div class="col-lg-4 col-sm-6 mb-4">
<div class="card rounded-0 hover-shadow border-top-0 border-left-0 border-right-0">
<div class="card-body">
<h4 class="card-title mb-3">{{ .title }}</h4>
<div class="content">{{ .content | markdownify }}</div>
</div>
</div>
</div>
{{ end }}
</div>
</div>
</section>
{{ end }}