Özgür Yazılım Derneği web sitesi https://oyd.org.tr
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.
oyd-web/layouts/partials/events.html

12 lines
380 B

{{ range $.Site.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 }}