2018-07-20 19:14:22 +02:00
|
|
|
{{ define "main" }}
|
2019-11-30 07:18:09 +01:00
|
|
|
{{ $isntDefault := not (or (eq (trim $.Site.Params.contentTypeName " ") "posts") (eq (trim $.Site.Params.contentTypeName " ") "")) }}
|
|
|
|
{{ $contentTypeName := cond $isntDefault (string $.Site.Params.contentTypeName) "posts" }}
|
|
|
|
|
2018-07-20 19:14:22 +02:00
|
|
|
<div class="post">
|
|
|
|
<h2 class="post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
|
|
|
|
<div class="post-meta">
|
2019-11-30 07:18:09 +01:00
|
|
|
{{ if .Date | default nil }}
|
2019-02-05 15:27:25 +01:00
|
|
|
<span class="post-date">
|
2019-11-30 07:18:09 +01:00
|
|
|
{{ .Date.Format ($.Site.Params.DateFormatSingle | default "2006-01-02") }}
|
2019-02-05 15:27:25 +01:00
|
|
|
</span>
|
2020-01-27 18:29:31 +01:00
|
|
|
|
2019-11-30 07:18:09 +01:00
|
|
|
{{ if eq .Type $contentTypeName }}
|
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 }}
|
|
|
|
{{ end }}
|
2019-02-05 15:27:25 +01:00
|
|
|
{{ end }}
|
2019-11-10 08:54:22 +01:00
|
|
|
|
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 }}
|
|
|
|
{{ if .Params.UseRelativeCover }}
|
|
|
|
<img src="{{ (printf "%s%s" .Permalink .Params.Cover ) }}" class="post-cover" />
|
|
|
|
{{ else }}
|
2019-05-12 01:25:20 +02:00
|
|
|
<img src="{{ .Params.Cover | absURL }}" class="post-cover" />
|
2019-03-19 17:47:05 +01:00
|
|
|
{{ end }}
|
2018-07-20 19:14:22 +02:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<div class="post-content">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2019-12-18 17:59:55 +01:00
|
|
|
{{ if eq .Type $.Site.Params.contentTypeName }}
|
|
|
|
{{ if or .NextInSection .PrevInSection }}
|
|
|
|
<div class="pagination">
|
|
|
|
<div class="pagination__title">
|
|
|
|
<span class="pagination__title-h">{{ $.Site.Params.ReadOtherPosts | default "Read other posts" }}</span>
|
|
|
|
<hr />
|
|
|
|
</div>
|
|
|
|
<div class="pagination__buttons">
|
|
|
|
{{ if .NextInSection }}
|
|
|
|
<span class="button previous">
|
|
|
|
<a href="{{ .NextInSection.Permalink }}">
|
|
|
|
<span class="button__icon">←</span>
|
|
|
|
<span class="button__text">{{ .NextInSection.Title }}</span>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
{{ if .PrevInSection }}
|
|
|
|
<span class="button next">
|
|
|
|
<a href="{{ .PrevInSection.Permalink }}">
|
|
|
|
<span class="button__text">{{ .PrevInSection.Title }}</span>
|
|
|
|
<span class="button__icon">→</span>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2018-07-20 19:14:22 +02:00
|
|
|
</div>
|
2019-12-18 17:59:55 +01:00
|
|
|
{{ end }}
|
2018-07-20 19:14:22 +02:00
|
|
|
{{ end }}
|
2020-01-27 18:29:31 +01:00
|
|
|
|
2019-12-27 08:51:52 +01:00
|
|
|
|
|
|
|
{{ if not (eq .Params.Comments "false") }}
|
|
|
|
{{ if or (eq .Type $.Site.Params.contentTypeName) (.Params.Comments) }}
|
|
|
|
{{ partial "comments.html" . }}
|
|
|
|
{{ end }}
|
2019-12-24 03:32:31 +01:00
|
|
|
{{ end }}
|
2020-01-27 18:29:31 +01:00
|
|
|
|
2019-02-01 15:06:59 +01:00
|
|
|
</div>
|
2020-01-27 18:29:31 +01:00
|
|
|
{{ end }}
|