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
|
|
|
|
2020-06-06 21:05:21 +02:00
|
|
|
<h1 class="post-title{{ if .Params.favorite }} favorite{{end}}">{{ 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>
|
2020-06-06 21:05:21 +02:00
|
|
|
<h2 class="post-title{{ if .Params.favorite }} favorite{{end}}"><a href="{{ .RelPermalink }}">{{ trim .Title " " }}</a></h2>
|
2020-01-12 07:51:51 +01:00
|
|
|
</header>
|
2020-06-07 12:36:02 +02:00
|
|
|
{{ partial "postInfo.html" . }}
|
2020-01-12 07:51:51 +01:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|