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

@ -1,10 +0,0 @@
{{ $pc := .Page.Site.Config.Privacy.YouTube }}
{{ if not $pc.Disable }}
{{ $ytHost := cond $pc.PrivacyEnhanced "piped.kavin.rocks" "www.youtube.com" }}
{{ $id := .Get "id" | default (.Get 0) }}
{{ $class := .Get "class" | default (.Get 1) }}
{{ $title := .Get "title" | default "YouTube Video" }}
<div {{ with $class }}class="shortcode {{ . }}" {{ else }} style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"{{ end }}>
<iframe src="https://{{ $ytHost }}/embed/{{ $id }}{{ with .Get "autoplay" }}{{ if eq . "true" }}?autoplay=1{{ end }}{{ end }}" {{ if not $class }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" {{ end }}allowfullscreen title="{{ $title }}"></iframe>
</div>
{{ end }}