Implementierung Fachbereichsseiten (#305)
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:
18
layouts/wou/list.html
Normal file
18
layouts/wou/list.html
Normal file
@ -0,0 +1,18 @@
|
||||
{{ define "main" }}
|
||||
|
||||
<section class="section pb-0">
|
||||
<div class="container">
|
||||
<div class="content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
{{ range .Pages }}
|
||||
{{ partial "card-btn" . }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{{ end }}
|
15
layouts/wou/single.html
Normal file
15
layouts/wou/single.html
Normal file
@ -0,0 +1,15 @@
|
||||
{{ define "main" }}
|
||||
|
||||
<section class="section" data-pagefind-body>
|
||||
<div class="container">
|
||||
<div class="content text-justify">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{{ with .Params.news }}
|
||||
{{ partial "news" (merge . (dict "Site" $.Site)) }}
|
||||
{{ end }}
|
||||
|
||||
{{ end }}
|
Reference in New Issue
Block a user