56 lines
1.2 KiB
HTML
56 lines
1.2 KiB
HTML
|
<div class="left">
|
||
|
{{ with .Site.Data.cosin }}
|
||
|
|
||
|
<h3>{{ .title }} {{ .date_year }}</h3>
|
||
|
|
||
|
<p>{{ .description }}
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
{{ if .date_known }}
|
||
|
<strong>Datum:</strong> {{ .date_day_start }}.-{{ .date_day_end }}. {{ .date_month }} {{ .date_year }}<br/>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ if .place_known }}
|
||
|
<strong>Ort:</strong> {{ .location }} in <strong>{{ .city }}</strong><br/>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ if .registration_open }}
|
||
|
<strong>Eintritt:</strong> {{ .entrance_fee }}
|
||
|
{{ end }}
|
||
|
</p>
|
||
|
|
||
|
|
||
|
{{ if .flyer_available }}
|
||
|
<p><strong><a href="/flyer/{{ .flyer_path }}">Flyer CoSin {{ .date_year }}</a></strong></p>
|
||
|
{{ end }}
|
||
|
|
||
|
|
||
|
{{ if .registration_open }}
|
||
|
<p><strong>Anmeldung:</strong> <a href="mailto:{{ .registration_email }}">{{ .registration_email }}</a> (nur für Essen)</p>
|
||
|
{{ end }}
|
||
|
|
||
|
|
||
|
{{ if .cfp_running }}
|
||
|
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Frab</a></p>
|
||
|
{{ end }}
|
||
|
|
||
|
|
||
|
{{ if .schedule_available }}
|
||
|
<p>
|
||
|
<strong>Fahrplan:</strong>
|
||
|
<ul>
|
||
|
{{ range $index, $element := .schedule_urls }}
|
||
|
<li><a href="{{ $element | safeURL }}">Tag {{ add $index 1 }}</a>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</p>
|
||
|
{{ end }}
|
||
|
|
||
|
|
||
|
<p><strong>IRC:</strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}">{{ .irc_channel }}</a>
|
||
|
</p>
|
||
|
|
||
|
{{ end }}
|
||
|
</div>
|