hugo-theme-hello-friend/layouts/_default/list.html

44 lines
1.5 KiB
HTML
Raw Normal View History

2018-07-20 19:14:22 +02:00
{{ define "main" }}
<div class="posts">
2019-01-29 11:11:48 +01:00
{{ $isntDefault := not (or (eq (trim $.Site.Params.contentTypeName " ") "posts") (eq (trim $.Site.Params.contentTypeName " ") "")) }}
{{ $contentTypeName := cond $isntDefault (string $.Site.Params.contentTypeName) "posts" }}
2019-01-25 10:20:52 +01:00
{{ $paginator := .Paginate (where .Data.Pages "Type" $contentTypeName) }}
2018-07-20 19:14:22 +02:00
{{ range $paginator.Pages }}
<div class="post on-list">
<h1 class="post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
<div class="post-meta">
<span class="post-date">
2018-07-30 19:03:01 +02:00
{{ .Date.Format "2006-01-02" }}
2018-07-20 19:14:22 +02:00
</span>
2019-01-29 19:24:36 +01:00
{{ with .Params.Author }}<span class="post-author">— {{ $.Site.Params.WrittenBy }} {{ . }}</span>{{ end }}
2018-07-20 19:14:22 +02:00
</div>
{{ if .Params.tags }}
<span class="post-tags">
{{ range .Params.tags }}
2019-01-29 11:11:48 +01:00
#<a href="{{ (urlize (printf "tags/%s" . )) | absURL }}">{{ . }}</a>&nbsp;
2018-07-20 19:14:22 +02:00
{{ end }}
</span>
{{ end }}
{{ with .Params.Cover }}
2019-01-29 11:11:48 +01:00
<img src="{{ printf "img/%s" . | absURL }}" class="post-cover" />
2018-07-20 19:14:22 +02:00
{{ end }}
<div class="post-content">
{{ with .Description }}
{{ . | markdownify }}
{{ else }}
{{ if .Truncated }}
{{ .Summary | markdownify }}
{{ end }}
{{ end }}
</div>
2019-01-29 11:11:48 +01:00
<div><a class="read-more button" href="{{.RelPermalink}}">{{ $.Site.Params.ReadMore }} →</a></div>
2018-07-20 19:14:22 +02:00
</div>
{{ end }}
{{ partial "pagination.html" . }}
</div>
{{ end }}