Files
.gitea
assets
content
data
layouts
_default
abiturienten
about
alumninetzwerk
anmeldeformular
anmeldung
author
begabte
cantorfora
cantorpreis
forms
ganztagsangebote
kontakt
pages
partials
blog-sidebar.html
card-btn-ni.html
card-icon.html
collapsible.html
download.html
filter-controls.html
footer.html
head.html
header-cl-url.html
header.html
info.html
modal.html
opengraph.html
page-header.html
pagination.html
preloader.html
termin.html
twitter.html
projektwoche
schulchronik
shortcodes
superhaufen
termine
wettbewerbe
404.html
index.html
robots.txt
static
.gitignore
.mailmap
LICENSE
config.yml
gcg-website/layouts/partials/modal.html

18 lines
647 B
HTML

<div id="{{ md5 .title }}" class="modal fade">
<div class="modal-dialog modal-xl modal-dialog-scrollable modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title">{{ .title }}</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" data-pagefind-ignore></button>
</div>
<div class="modal-body">
<div class="content mb-4">
{{ .content | markdownify }}
</div>
{{ range .unterhaufen }}
{{ partial "collapsible" . }}
{{ end }}
</div>
</div>
</div>
</div>