2018-07-20 19:14:22 +02:00
|
|
|
{{ define "main" }}
|
2019-11-30 07:18:09 +01:00
|
|
|
<div class="posts">
|
2020-06-17 17:04:46 +02:00
|
|
|
{{ range .Pages }}
|
2018-07-20 19:14:22 +02:00
|
|
|
<div class="post on-list">
|
|
|
|
<h1 class="post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
|
|
|
|
<div class="post-meta">
|
2019-11-10 08:53:09 +01:00
|
|
|
{{ if .Date }}
|
|
|
|
<span class="post-date">
|
|
|
|
{{ .Date.Format ($.Site.Params.DateFormatList | default "2006-01-02") }}
|
|
|
|
</span>
|
2020-01-27 18:29:31 +01:00
|
|
|
|
|
|
|
{{ if $.Site.Params.LastModDisplay }}
|
2019-11-30 07:18:09 +01:00
|
|
|
{{ partial "lastmod.html" . }}
|
2019-11-10 08:54:22 +01:00
|
|
|
{{ end }}
|
2019-11-10 08:53:09 +01:00
|
|
|
{{ end }}
|
2019-02-05 14:22:41 +01:00
|
|
|
{{ with .Params.Author }}<span class="post-author">— {{ $.Site.Params.WrittenBy | default "Written by" }} {{ . }}</span>{{ end }}
|
2019-02-21 08:21:47 +01:00
|
|
|
{{ if $.Site.Params.ShowReadingTime }}
|
2019-02-22 10:06:03 +01:00
|
|
|
<span class="post-read-time">— {{ .ReadingTime }} {{ $.Site.Params.MinuteReadingTime | default "min read" }}</span>
|
2019-02-21 08:21:47 +01:00
|
|
|
{{ end }}
|
2018-07-20 19:14:22 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ if .Params.tags }}
|
|
|
|
<span class="post-tags">
|
|
|
|
{{ range .Params.tags }}
|
2019-03-27 04:38:11 +01:00
|
|
|
#<a href="{{ (urlize (printf "tags/%s" . )) | absURL }}/">{{ . }}</a>
|
2018-07-20 19:14:22 +02:00
|
|
|
{{ end }}
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
|
2019-03-19 17:47:05 +01:00
|
|
|
{{ if .Params.Cover }}
|
2020-07-07 18:56:33 +02:00
|
|
|
<figure class="post-cover">
|
|
|
|
{{ if .Params.UseRelativeCover }}
|
2020-07-27 00:40:08 +02:00
|
|
|
<img src="{{ (printf "%s%s" .Permalink .Params.Cover ) }}" alt="{{ .Title | plainify | default " " }}" />
|
2020-07-07 18:56:33 +02:00
|
|
|
{{ else }}
|
2020-07-27 00:40:08 +02:00
|
|
|
<img src="{{ .Params.Cover | absURL }}" alt="{{ .Title | plainify | default " " }}" />
|
2020-07-07 18:56:33 +02:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Params.CoverCaption }}
|
|
|
|
<figcaption class="center">{{ .Params.CoverCaption | markdownify }}</figcaption>
|
|
|
|
{{ end }}
|
|
|
|
</figure>
|
2018-07-20 19:14:22 +02:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<div class="post-content">
|
|
|
|
{{ with .Description }}
|
|
|
|
{{ . | markdownify }}
|
|
|
|
{{ else }}
|
|
|
|
{{ if .Truncated }}
|
|
|
|
{{ .Summary | markdownify }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2020-02-05 16:30:19 +01:00
|
|
|
{{ if not .Params.hideReadMore }}
|
|
|
|
<div><a class="read-more button" href="{{.RelPermalink}}">{{ $.Site.Params.ReadMore | default "Read more" }} →</a></div>
|
|
|
|
{{ end }}
|
2018-07-20 19:14:22 +02:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
</div>
|
2020-01-27 18:29:31 +01:00
|
|
|
{{ end }}
|