Implementierung Fachbereichsseiten (#305)
All checks were successful
Website Prod/Test / Produktivumgebung (push) Successful in 19s
Website Prod/Test / Testumgebung (push) Successful in 8s

Schließt #182

Basis-Implementierung der Fachbereichsseiten mit Layout/Menüeinbindung, Inhalt aller Fächer, WoU-Seiten, Umstrukturierung der Begabtenförderung

Co-authored-by: GCG.Admin (Automatisiert) <admin@cantor-gymnasium.de>
Reviewed-on: #305
This commit is contained in:
2024-11-22 09:01:19 +01:00
parent 9eaa1f0a4d
commit 14b1cce75f
114 changed files with 1355 additions and 168 deletions

View File

@ -0,0 +1,13 @@
{{ define "main" }}
<section class="section pb-0">
<div class="container">
<div class="row">
{{ range .Data.Pages }}
{{ partial "card-btn" . }}
{{ end }}
</div>
</div>
</section>
{{ end }}

View File

@ -0,0 +1,9 @@
{{ define "main" }}
{{ partial "tile-modals" . }}
{{ if not (eq .Params.news false) }}
{{ partial "news" (dict "param" ".Params.subjects" "cond" (slice .Title) "title" (print "dem Fach " .Title) "Site" .Site) }}
{{ end }}
{{ end }}