2020-01-12 07:51:51 +01:00
|
|
|
{{ define "main" }}
|
2020-05-07 21:02:59 +02:00
|
|
|
<div class="index-content">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2020-01-12 07:51:51 +01:00
|
|
|
|
2021-01-20 20:12:50 +01:00
|
|
|
<div class="articles h-feed">
|
|
|
|
<h1 class="post-title">{{ i18n .Title }}</h1>
|
2021-06-28 14:16:55 +02:00
|
|
|
{{ $pages := where .Pages "Type" "in" site.Params.mainSections }}
|
2021-01-20 20:12:50 +01:00
|
|
|
{{ range $pages }}
|
|
|
|
<div class="post-short-list h-entry">
|
2021-12-19 12:10:10 +01:00
|
|
|
<div class="post-header">
|
|
|
|
<header>
|
|
|
|
<h2 class="p-name post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}"><a class="u-url" href="{{ .RelPermalink }}">{{ trim .Title " " }}</a></h2>
|
|
|
|
{{ partial "post-language-switcher.html" . }}
|
|
|
|
</header>
|
|
|
|
</div>
|
2021-07-09 18:00:52 +02:00
|
|
|
{{ partial "post-info.html" . }}
|
2021-01-20 20:12:50 +01:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2020-01-12 07:51:51 +01:00
|
|
|
|
|
|
|
{{ end }}
|