hugo-theme-anubis2/layouts/_default/list.html
2020-06-21 23:02:58 +03:00

17 lines
582 B
HTML

{{ define "main" }}
<div class="index-content">
{{ .Content }}
</div>
<h1 class="post-title">{{ i18n .Title }}</h1>
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ range $pages }}
<div class="post-short-list">
<header>
<h2 class="post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}"><a href="{{ .RelPermalink }}">{{ trim .Title " " }}</a></h2>
</header>
{{ partial "postInfo.html" . }}
</div>
{{ end }}
{{ end }}