forked from oyd/oyd-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
426 B
13 lines
426 B
{{ $data := index .Site.Data .Site.Language.Lang }}
|
|
{{ range $data.events.events }}
|
|
<div class="event">
|
|
<a href="{{ .url }}">{{ .title }}</a>
|
|
<address>{{ .address }}</address>
|
|
{{ if .time }}
|
|
<time datetime="{{ .time.Format "2006-1-2" | safeHTML }}">
|
|
{{ .time.Day }} {{ index $.Site.Data.months (printf "%d" .time.Month) }}'{{ .time.Format "06" }}
|
|
</time>
|
|
{{ end }}
|
|
<p>{{ .description }}</p>
|
|
</div>
|
|
{{ end }}
|
|
|