Özgür Yazılım Derneği web sitesi https://oyd.org.tr
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
oyd-web/layouts/partials/events.html

12 行
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 }}