Denys Konovalov
a275283b6e
- [x] Update auf Static CMS v2.0 - [x] aktualisierte Shortcodes (schließt #225) - [x] aktualisierte Previews (schließt #181) - Ordnerunterstützung - [x] vervollständigte Seiten - [x] Aufräumarbeiten Reviewed-on: https://git.cantorgymnasium.de/gcg/gcg-website/pulls/226
15 lines
783 B
HTML
15 lines
783 B
HTML
<div class="card d-md-table w-100 hover-shadow border-primary ps-0 pe-0 mb-4">
|
|
<div class="d-md-table-cell text-center p-4 bg-primary text-white mb-4 mb-md-0 termin-tc rounded">
|
|
<span class="h2 d-block">{{ time.Format "2" .date}}</span>
|
|
<span class="d-block">{{ time.Format "Jan 2006" .date}}</span>
|
|
{{ with .enddate }}<br>bis {{ time.Format "2 Jan 2006" . }}{{ end }}
|
|
</div>
|
|
<div class="d-md-table-cell px-4 vertical-align-middle mb-4 mb-md-0 p-2">
|
|
<p class="h4 mb-0 d-block">{{ .title }}</p>
|
|
</div>
|
|
{{ with .location }}
|
|
<div class="d-md-table-cell text-end pe-md-4 p-2 vertical-align-middle">
|
|
<p><i class="mdi mdi-map-marker-radius-outline icon-s text-primary me-2"></i>{{ . | markdownify }}</p>
|
|
</div>
|
|
{{ end }}
|
|
</div> |