gcg-website/layouts/partials/termin.html
Denys Konovalov b141640a15
All checks were successful
website-dev / dev-build (push) Successful in 1m13s
Merge feat/fachbereiche into dev (#238)
Co-authored-by: Lilli Berthold <lilli.berthold@outlook.de>
Reviewed-on: #238
2023-08-04 18:11:47 +02:00

19 lines
738 B
HTML

<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">
<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>
<div class="col-md-9">
<div class="card-body h-100 d-flex flex-column justify-content-around">
<h4 class="card-title">{{ .title }}</h4>
{{ with .location }}
<div class="card-text">
<i class="mdi mdi-map-marker-radius-outline icon-s text-primary me-2"></i>{{ . | markdownify }}
</div>
{{ end }}
</div>
</div>
</div>
</div>