Files
.gitea
assets
content
data
layouts
_default
abiturienten
about
alumninetzwerk
anmeldeformular
anmeldung
author
begabte
cantorfora
cantorpreis
forms
ganztagsangebote
kontakt
pages
partials
authors.html
blog-sidebar.html
card-article.html
card-btn.html
card-category.html
collapsible.html
download.html
filter-controls.html
footer.html
ganztag.html
head.html
header-contest.html
header.html
icon-element.html
info.html
mdi.html
modal.html
opengraph.html
page-header.html
pagination.html
preloader.html
related.html
summary.html
termin.html
tile-modals.html
twitter.html
projektwoche
schulchronik
shortcodes
superhaufen
termine
wettbewerbe
404.html
index.html
robots.txt
static
.gitignore
.mailmap
LICENSE
config.yml
go.mod
go.sum
gcg-website/layouts/partials/termin.html

20 lines
806 B
HTML
Raw Normal View History

2023-07-29 13:16:25 +02:00
<div class="card hover-shadow border-primary mb-4 p-0">
<div class="row g-0">
<div class="col-md-3 text-center p-4 bg-primary text-white rounded">
2023-08-01 21:44:43 +02:00
<div class="h2">{{ time.Format "2" .date}}</div>
<div>{{ time.Format "Jan 2006" .date}}</div>
{{ with .enddate }}<br>bis {{ time.Format "2 Jan 2006" . }}{{ end }}
</div>
2023-07-29 13:16:25 +02:00
<div class="col-md-9">
2023-07-30 09:53:00 +02:00
<div class="card-body h-100 d-flex flex-column justify-content-around">
2024-01-01 18:11:57 +01:00
<h4 class="card-title mb-0">{{ .title }}</h4>
2023-07-29 13:16:25 +02:00
{{ with .location }}
2024-01-01 18:11:57 +01:00
<div class="card-text d-flex align-items-center">
2024-01-20 20:09:43 +01:00
<span class="text-primary icon-s d-flex me-2">{{ partial "mdi" "map-marker-radius-outline" }}</span>
{{ . | markdownify }}
2023-07-29 13:16:25 +02:00
</div>
{{ end }}
</div>
</div>
2023-07-29 13:16:25 +02:00
</div>
</div>