67 lines
1.5 KiB
HTML
67 lines
1.5 KiB
HTML
<div class="left">
|
|
{{ with .Site.Data.cosin }}
|
|
|
|
<h3>{{ .title }} {{ .date_year }}</h3>
|
|
|
|
<p>
|
|
Cosin is a yearly chaotic event in Switzerland. The content ranges from
|
|
technical and political, to social and cultural.
|
|
</p>
|
|
|
|
<p>
|
|
{{ if .date_known }}
|
|
<strong>Date:</strong> {{ i18n .date_month }} {{ .date_day_start }}th - {{ .date_day_end }}th {{ .date_year }}<br/>
|
|
{{ end }}
|
|
|
|
{{ if .place_known }}
|
|
<strong>Location:</strong> {{ .location }} in <strong>{{ i18n .city }}</strong><br/>
|
|
{{ end }}
|
|
|
|
{{ if .registration_open }}
|
|
<strong>Entrance:</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>Registration for meals:</strong> <a href="mailto:{{ .registration_email }}">{{ .registration_email }}</a></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>Schedule:</strong>
|
|
<ul>
|
|
{{ range $index, $element := .schedule_urls }}
|
|
<li><a href="{{ $element | safeURL }}">Day {{ add $index 1 }}</a>
|
|
{{ end }}
|
|
</ul>
|
|
</p>
|
|
{{ end }}
|
|
|
|
|
|
<p><strong>IRC:</strong> <a href="{{ .irc_server | safeURL }}{{ .irc_channel }}">{{ .irc_channel }}</a>
|
|
</p>
|
|
|
|
{{ end }}
|
|
|
|
<p>
|
|
<strong>Language:</strong>
|
|
{{ if .IsTranslated }}
|
|
{{ range .Translations }}
|
|
<a href="{{ .Permalink }}">{{ index .Site.Params.languageNames .Lang }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</p>
|
|
|
|
</div>
|