hugo-theme-anubis2/layouts/_default/list.html
2020-02-18 20:55:17 +03:00

16 lines
438 B
HTML

{{ define "main" }}
<h1>{{ i18n .Title }}</h1>
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ range $pages }}
<div class="post-short-list">
<header>
<h2>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h2>
</header>
{{ partial "articleInfoFull.html" . }}
</div>
{{ end }}
{{ end }}