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>
|
2023-04-05 14:16:33 +02:00
|
|
|
{{ 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>
|
2023-04-05 14:16:33 +02:00
|
|
|
</div>
|
2023-07-29 13:16:25 +02:00
|
|
|
</div>
|
2023-04-05 14:16:33 +02:00
|
|
|
</div>
|