tech-ingolf-wagner-de/layouts/_default/list.html

21 lines
449 B
HTML
Raw Normal View History

2018-06-18 09:14:28 +02:00
{{ define "main" }}
2021-08-25 20:06:33 +02:00
<div class="content">
<h1>{{ .Title }}</h1>
2018-06-18 09:02:01 +02:00
{{ .Content }}
2018-09-30 08:50:58 +02:00
2018-09-29 03:14:05 +02:00
<ul class="pages-list">
2021-08-25 20:06:33 +02:00
{{ range (where site.RegularPages "Type" "in" site.Params.mainSections).ByDate.Reverse }}
2021-08-27 08:36:35 +02:00
<li>
2021-08-25 20:06:33 +02:00
<a href="{{.URL}}">
2021-08-27 08:36:35 +02:00
{{ .Title }}
2021-08-25 20:06:33 +02:00
<p>
{{ .Param "summary" }}
</p>
</a>
2018-09-30 08:50:58 +02:00
</li>
2021-08-25 20:06:33 +02:00
{{ end }}
2018-09-28 20:51:59 +02:00
</ul>
2018-09-29 00:52:43 +02:00
2021-08-25 20:06:33 +02:00
</div>
2018-06-18 09:14:28 +02:00
{{ end }}