hugo-theme-anubis2/layouts/_default/list.html

26 lines
1016 B
HTML
Raw Normal View History

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
<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">
2021-12-23 19:56:08 +01:00
<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 }}
2021-07-09 18:00:52 +02:00
{{ partial "post-info.html" . }}
</div>
{{ end }}
</div>
2020-01-12 07:51:51 +01:00
{{ end }}