cosin-website/layouts/partials/site-sidebar.en.html

85 lines
2.2 KiB
HTML
Raw Normal View History

2018-04-23 04:18:37 +02:00
<div class="left">
{{ with .Site.Data.cosin }}
<h3>{{ .title }} {{ .date_year }}</h3>
2018-04-23 20:46:27 +02:00
<p>
2024-05-09 01:31:03 +02:00
CoSin is a yearly chaotic event in Switzerland. The content ranges from
2018-04-23 20:46:27 +02:00
technical and political, to social and cultural.
2018-04-23 04:18:37 +02:00
</p>
2021-08-18 18:11:23 +02:00
{{ if .is_cancelled }}
2020-04-26 23:35:34 +02:00
<p>
2021-08-18 18:11:23 +02:00
<strong>The CoSin {{ .date_year }} is cancelled!</strong>
2020-04-26 23:35:34 +02:00
</p>
2021-08-18 18:11:23 +02:00
{{ end }}
2020-04-26 23:35:34 +02:00
2018-04-23 04:18:37 +02:00
<p>
{{ if .date_known }}
2022-10-08 23:21:25 +02:00
<strong>Date:</strong> {{ i18n .date_start_month }} {{ humanize .date_start_day }} - {{ i18n .date_end_month }} {{ humanize .date_end_day }} {{ .date_year }}<br/>
2018-04-23 04:18:37 +02:00
{{ end }}
2018-04-29 20:05:45 +02:00
{{ if .location_known }}
2022-10-08 23:21:25 +02:00
<strong>Location:</strong> {{ i18n .location_name }} in <strong>{{ i18n .location_city }}</strong>
2018-04-23 04:18:37 +02:00
{{ end }}
</p>
{{ if .flyer_available }}
<p><strong><a href="/flyer/{{ .flyer_path }}">Flyer CoSin {{ .date_year }}</a></strong></p>
{{ end }}
{{ if .registration_open }}
2019-04-27 20:49:16 +02:00
<p>
<strong>Registration:</strong> <a href="{{ .registration_url }}">Tickets</a><br>
<strong>Admission:</strong> {{ .entrance_fee }}
</p>
2018-04-23 04:18:37 +02:00
{{ end }}
{{ if .cfp_running }}
2023-04-26 21:12:57 +02:00
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Pretalx</a><br>
2018-05-29 01:38:46 +02:00
Open until {{ .cfp_end_date_day }}. {{ i18n .cfp_end_date_month }} {{ .date_year }}.<br/>
</p>
2018-04-23 04:18:37 +02:00
{{ end }}
{{ if .schedule_available }}
2018-04-29 18:03:46 +02:00
<p><strong>Schedule:</strong></p>
2018-04-24 04:20:14 +02:00
<ul>
{{ range $index, $element := .schedule_day_urls }}
2018-04-24 04:20:14 +02:00
<li><a href="{{ $element | safeURL }}">Day {{ add $index 1 }}</a></li>
2018-04-23 04:18:37 +02:00
{{ end }}
2018-04-24 04:20:14 +02:00
</ul>
2018-04-23 04:18:37 +02:00
{{ end }}
{{ if .streaming_available }}
<p><strong>Videostreaming:</strong>
<a href="{{ .streaming_main_url | safeURL }}">Live</a>
</p>
{{ end }}
2022-09-06 01:03:01 +02:00
<p><strong><s>IRC:</s></strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}"><s>{{ .irc_channel }}</s></a> (obsolete)</p>
2022-09-05 20:32:53 +02:00
2022-10-11 00:12:33 +02:00
<p><strong>Matrix:</strong> <a href="{{ .matrix_to | safeURL }}{{ urlquery .matrix_space }}:{{ .matrix_server }}">{{ .matrix_space }}:{{ .matrix_server }}</a></p>
2022-09-06 01:02:08 +02:00
2022-09-05 22:13:37 +02:00
<p><strong>Mastodon:</strong> <a rel="me" href="{{ .mastodon_server | safeURL }}{{ .mastodon_handle }}">{{ .mastodon_handle }}</a></p>
2018-04-23 04:18:37 +02:00
{{ end }}
2018-04-23 18:13:15 +02:00
2018-04-29 18:03:46 +02:00
2018-04-23 18:13:15 +02:00
<p>
2018-04-23 20:46:27 +02:00
<strong>Language:</strong>
2018-04-23 18:13:15 +02:00
{{ if .IsTranslated }}
2018-04-29 18:03:46 +02:00
{{ range .Translations }}
<a href="{{ .Permalink }}">{{ .Site.Language.LanguageName }}</a>
{{ end }}
2018-04-23 18:13:15 +02:00
{{ end }}
</p>
2018-04-23 04:18:37 +02:00
</div>