Ö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 }}