ccchh-website/themes/ccchh/layouts/shortcodes/calendar-table.html
jtbx 0f533e21e5
All checks were successful
/ build (push) Successful in 13s
Theme: Add link to "Z9" location
2024-02-20 21:27:28 +01:00

32 lines
888 B
HTML

{{- index .Site.Data "calendar.json" }}
<table>
<thead>
<tr>
<td>Datum</td>
<td>Titel</td>
<td>Ort</td>
</tr>
</thead>
<tbody>
{{- range first 7 (sort $.Site.Data.calendar "dtstart" ) }}
{{- if eq ._type "vevent"}}
<tr>
{{- $start := time .dtstart }}
<td style="font-variant-numeric: tabular-nums;">{{ time.Format "Mon, 2006-01-02 15:04" $start.Local }}</td>
{{- $potentialUrl := index (findRE `https?://\S*` .description 1) 0 }}
{{- if eq $potentialUrl nil }}
<td>{{ .summary }}</td>
{{- else }}
<td><a href="{{ $potentialUrl }}">{{ .summary }}</a></td>
{{- end }}
{{- if eq .location "Z9" }}
<td><a href="https://wiki.hamburg.ccc.de/club:z9:start">Z9</a></td>
{{- else }}
<td>{{ .location }}</td>
{{- end }}
</tr>
{{- end }}
{{- end }}
</tbody>
</table>