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:
23
layouts/_default/_markup/render-blockquote.html
Normal file
23
layouts/_default/_markup/render-blockquote.html
Normal file
@ -0,0 +1,23 @@
|
||||
{{ $emojis := dict
|
||||
"danger" "alert-octagram"
|
||||
"info" "information-outline"
|
||||
"warning" "alert-outline"
|
||||
}}
|
||||
|
||||
{{ if eq .Type "alert" }}
|
||||
<div class="alert alert-{{ .AlertType }}" role="alert">
|
||||
<h4 class="alert-heading">
|
||||
{{ partial "mdi" (index $emojis .AlertType) }}
|
||||
{{ with .AlertTitle }}
|
||||
{{ . }}
|
||||
{{ else }}
|
||||
{{ or (i18n .AlertType) (title .AlertType) }}
|
||||
{{ end }}
|
||||
</h4>
|
||||
{{ .Text }}
|
||||
</div>
|
||||
{{ else }}
|
||||
<blockquote>
|
||||
{{ .Text }}
|
||||
</blockquote>
|
||||
{{ end }}
|
Reference in New Issue
Block a user