2020-06-17 17:04:46 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ $isntDefault := not (or (eq (trim $.Site.Params.contentTypeName " ") "posts") (eq (trim $.Site.Params.contentTypeName " ") "")) }}
|
|
|
|
{{ $contentTypeName := cond $isntDefault (string $.Site.Params.contentTypeName) "posts" }}
|
|
|
|
|
|
|
|
{{ $PageContext := . }}
|
|
|
|
{{ if .IsHome }}
|
|
|
|
{{ $PageContext = .Site }}
|
|
|
|
{{ end }}
|
|
|
|
{{ $paginator := .Paginate (where $PageContext.RegularPages "Type" $contentTypeName) }}
|
|
|
|
|
|
|
|
<div class="posts">
|
|
|
|
{{ range $paginator.Pages }}
|
|
|
|
<div class="post on-list">
|
|
|
|
<h1 class="post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
|
|
|
|
<div class="post-meta">
|
|
|
|
{{ if .Date }}
|
|
|
|
<span class="post-date">
|
|
|
|
{{ .Date.Format ($.Site.Params.DateFormatList | default "2006-01-02") }}
|
|
|
|
</span>
|
|
|
|
|
|
|
|
{{ if $.Site.Params.LastModDisplay }}
|
|
|
|
{{ partial "lastmod.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ with .Params.Author }}<span class="post-author">— {{ $.Site.Params.WrittenBy | default "Written by" }} {{ . }}</span>{{ end }}
|
|
|
|
{{ if $.Site.Params.ShowReadingTime }}
|
|
|
|
<span class="post-read-time">— {{ .ReadingTime }} {{ $.Site.Params.MinuteReadingTime | default "min read" }}</span>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ if .Params.tags }}
|
|
|
|
<span class="post-tags">
|
|
|
|
{{ range .Params.tags }}
|
|
|
|
#<a href="{{ (urlize (printf "tags/%s" . )) | absURL }}/">{{ . }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Params.Cover }}
|
2020-07-07 18:56:33 +02:00
|
|
|
<figure class="post-cover">
|
|
|
|
{{ if .Params.UseRelativeCover }}
|
|
|
|
<img src="{{ (printf "%s%s" .Permalink .Params.Cover ) }}" />
|
|
|
|
{{ else }}
|
|
|
|
<img src="{{ .Params.Cover | absURL }}" />
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Params.CoverCaption }}
|
|
|
|
<figcaption class="center">{{ .Params.CoverCaption | markdownify }}</figcaption>
|
|
|
|
{{ end }}
|
|
|
|
</figure>
|
2020-06-17 17:04:46 +02:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<div class="post-content">
|
|
|
|
{{ with .Description }}
|
|
|
|
{{ . | markdownify }}
|
|
|
|
{{ else }}
|
|
|
|
{{ if .Truncated }}
|
|
|
|
{{ .Summary | markdownify }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ if not .Params.hideReadMore }}
|
|
|
|
<div><a class="read-more button" href="{{.RelPermalink}}">{{ $.Site.Params.ReadMore | default "Read more" }} →</a></div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|