kollektivforeningen.dk/layouts/calendar/index.html

19 lines
436 B
HTML

{{ partial "header.html" . }}
<section id=content>
<h1>Kalender</h1>
<ul class=posts_listing>
{{ range first 5 (where .Pages "Section" "calendar") }}
<li>
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
<div id=date>
<time>{{ .Date.Format (.Site.Params.dateform | default "January 2006") }}</time>
</div>
</li>
{{ end }}
</ul>
</section>
{{ partial "footer.html" . }}