31 lines
		
	
	
	
		
			888 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 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>
 |