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

17 lines
602 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
2020-06-21 22:02:58 +02:00
<h1 class="post-title">{{ i18n .Title }}</h1>
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ range $pages }}
2020-01-12 07:51:51 +01:00
<div class="post-short-list">
2020-06-21 22:23:07 +02:00
<header class="post-header">
2020-06-21 22:02:58 +02:00
<h2 class="post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}"><a href="{{ .RelPermalink }}">{{ trim .Title " " }}</a></h2>
2020-01-12 07:51:51 +01:00
</header>
{{ partial "postInfo.html" . }}
2020-01-12 07:51:51 +01:00
</div>
{{ end }}
{{ end }}