hugo-theme-anubis2/layouts/_default/list.html
2023-07-06 16:11:45 +02:00

26 lines
1016 B
HTML

{{ define "main" }}
<div class="index-content">
{{ .Content }}
</div>
<div class="articles h-feed">
<h1 class="post-title">{{ i18n .Title }}</h1>
{{ $showFullContent := in .Site.Params.sectionsWithFullContentOnListPage .Section }}
{{ $pages := where .Pages "Params.hidden" "!=" true}}
{{ range $pages }}
<div class="post-short-list h-entry">
<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>
{{ if $showFullContent }}
{{ .Content }}
{{ end }}
{{ partial "post-info.html" . }}
</div>
{{ end }}
</div>
{{ end }}