Files
benediktschnurr.de/layouts/_default/list.html

10 lines
364 B
HTML
Raw Normal View History

2017-10-15 18:32:13 +02:00
{{ define "main" }}
<div id="main">
{{ range (where .Site.Pages "Kind" "section").ByDate.Reverse }}
<article class="thumb">
<a href="{{ .Permalink }}" class="link"><img src="{{ .Params.albumthumb }}" alt="{{ .Title }}" /></a>
<h2>{{ .Title }}</h2>
</article>
{{ end }}
</div>
{{ end }}