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

82 lines
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>
Cosin is a yearly chaotic event in Switzerland. The content ranges from
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 }}
2020-04-26 23:35:34 +02:00
<strong>Date:</strong> <del>{{ i18n .date_start_month }} {{ humanize .date_start_day }} - {{ i18n .date_end_month }} {{ humanize .date_end_day }} {{ .date_year }}</del><br/>
2018-04-23 04:18:37 +02:00
{{ end }}
2018-04-29 20:05:45 +02:00
{{ if .location_known }}
2020-04-26 23:35:34 +02:00
<strong>Location:</strong> <del>{{ i18n .location_name }} in <strong>{{ i18n .location_city }}</strong></del>
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 }}
2018-05-29 01:38:46 +02:00
<p><strong>Call for Participation:</strong> <a href="{{ .cfp_url | safeURL }}">Frab</a><br>
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 }}
2018-04-29 18:03:46 +02:00
<p><strong>IRC:</strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}">{{ .irc_channel }}</a></p>
2022-09-05 20:32:53 +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>