2020-01-12 07:51:51 +01:00
|
|
|
{{ define "main" }}
|
|
|
|
|
2020-01-26 17:09:07 +01:00
|
|
|
<h1>{{ i18n .Title }}</h1>
|
2020-02-18 18:52:31 +01:00
|
|
|
{{ $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>
|
2020-02-18 18:52:31 +01:00
|
|
|
{{ partial "articleInfoFull.html" . }}
|
2020-01-12 07:51:51 +01:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|