.gitea
assets
content
data
i18n
layouts
_default
abiturienten
about
anmeldeformular
anmeldung
author
begabte
list.html
single.html
cantorfora
cantorpreis
forms
ganztagsangebote
kontakt
pages
partials
projektwoche
schulchronik
shortcodes
superhaufen
termine
wettbewerbe
404.html
index.html
robots.txt
static
.gitignore
LICENSE
config.yml
25 lines
755 B
HTML
25 lines
755 B
HTML
{{ define "main" }}
|
|
|
|
{{ partial "header-cl-url" (dict "Params" .Params "Content" .Content "default_img" "/media/begabte/image.webp") }}
|
|
|
|
|
|
<section class="section-sm pt-0">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h2 class="section-title">{{ i18n "related_begabtenfoerderung" }}</h2>
|
|
</div>
|
|
</div>
|
|
<div class="row" data-pagefind-ignore="all">
|
|
{{ $related := (where .Site.RegularPages "Type" "begabte") | intersect (where .Site.Pages ".Title" "!=" .Title) | union (.Site.RegularPages.Related . ) | shuffle | first 3}}
|
|
{{ range first 3 $related }}
|
|
<div class="col-lg-4 col-sm-6">
|
|
{{ .Render "card-btn"}}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{ end }}
|