81 lines
2 KiB
HTML
81 lines
2 KiB
HTML
<div class="left">
|
|
{{ with .Site.Data.cosin }}
|
|
|
|
<h3>{{ .title }} {{ .date_year }}</h3>
|
|
|
|
<p>
|
|
Chaos Singularity (CoSin) ist ein jährlicher Event des Schweizer Chaos.
|
|
Der Inhalt erstreckt sich über Technik und Politik zu Kunst und Kultur.
|
|
</p>
|
|
|
|
{{ if .is_cancelled }}
|
|
<p>
|
|
<strong>Die CoSin {{ .date_year }} findet nicht statt!</strong>
|
|
</p>
|
|
{{ end }}
|
|
|
|
<p>
|
|
{{ if .date_known }}
|
|
<strong>Datum:</strong> <del>{{ .date_start_day }}. {{ i18n .date_start_month }} - {{ .date_end_day }}. {{ i18n .date_end_month }} {{ .date_year }}</del><br/>
|
|
{{ end }}
|
|
|
|
{{ if .location_known }}
|
|
<strong>Ort:</strong> <del>{{ i18n .location_name }} in <strong>{{ i18n .location_city }}</strong></del>
|
|
{{ 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="{{ .registration_url }}">Tickets</a><br>
|
|
<strong>Eintritt:</strong> {{ .entrance_fee }}
|
|
</p>
|
|
{{ end }}
|
|
|
|
|
|
{{ if .cfp_running }}
|
|
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Frab</a><br>
|
|
Offen bis {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
|
|
</p>
|
|
{{ end }}
|
|
|
|
|
|
{{ if .schedule_available }}
|
|
<p><strong>Fahrplan:</strong></p>
|
|
<ul>
|
|
{{ range $index, $element := .schedule_day_urls }}
|
|
<li><a href="{{ $element | safeURL }}">Tag {{ add $index 1 }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
|
|
|
|
{{ if .streaming_available }}
|
|
<p><strong>Videostreaming:</strong>
|
|
<a href="{{ .streaming_main_url | safeURL }}">Live</a>
|
|
</p>
|
|
{{ end }}
|
|
|
|
|
|
<p><strong>IRC:</strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}">{{ .irc_channel }}</a></p>
|
|
|
|
|
|
<p><strong>Mastodon:</strong> <a rel="me" href="{{ .mastodon_server | safeURL }}{{ .mastodon_handle }}">{{ .mastodon_handle }}</a></p>
|
|
{{ end }}
|
|
|
|
|
|
<p>
|
|
<strong>Sprache:</strong>
|
|
{{ if .IsTranslated }}
|
|
{{ range .Translations }}
|
|
<a href="{{ .Permalink }}">{{ .Site.Language.LanguageName }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</p>
|
|
|
|
</div>
|