hugo-theme-anubis2/layouts/_default/list.html

16 lines
438 B
HTML
Raw Normal View History

2020-01-12 07:51:51 +01:00
{{ define "main" }}
2020-01-26 17:09:07 +01:00
<h1>{{ i18n .Title }}</h1>
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ range $pages }}
2020-01-12 07:51:51 +01:00
<div class="post-short-list">
<header>
<h2>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h2>
</header>
{{ partial "articleInfoFull.html" . }}
2020-01-12 07:51:51 +01:00
</div>
{{ end }}
{{ end }}