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">
|
2020-09-10 00:04:48 +02:00
|
|
|
<h1 class="post-title">{{ .Title | markdownify }}</h1>
|
2018-07-20 19:14:22 +02:00
|
|
|
<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
|
|
|
|
2020-09-09 22:56:54 +02: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 }}
|
2020-09-09 22:56:54 +02: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 }}
|
2020-09-10 00:04:48 +02: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-04 15:28:29 +02:00
|
|
|
<figure class="post-cover">
|
|
|
|
{{ if .Params.UseRelativeCover }}
|
2020-09-09 07:27:13 +02:00
|
|
|
<img src="{{ (printf "%s%s" .Permalink .Params.Cover ) }}" alt="{{ .Params.CoverAlt | plainify | default .Title }}" />
|
2020-07-04 15:28:29 +02:00
|
|
|
{{ else }}
|
2020-09-09 07:27:13 +02:00
|
|
|
<img src="{{ .Params.Cover | absURL }}" alt="{{ .Params.CoverAlt | plainify | default .Title }}" />
|
2020-07-04 15:28:29 +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">
|
2020-05-27 01:48:26 +02:00
|
|
|
{{ if or .Params.Toc $.Site.Params.Toc }}
|
2020-03-12 17:16:33 +01:00
|
|
|
<h2>Table of Contents</h2>
|
|
|
|
<aside class="table-of-contents">{{ .TableOfContents }}</aside>
|
|
|
|
{{ end }}
|
2018-07-20 19:14:22 +02:00
|
|
|
{{ .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">
|
2020-09-09 22:56:54 +02:00
|
|
|
<span class="pagination__title-h"
|
|
|
|
>{{ $.Site.Params.ReadOtherPosts | default "Read other posts" }}</span
|
|
|
|
>
|
2019-12-18 17:59:55 +01:00
|
|
|
<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-09-09 22:56:54 +02:00
|
|
|
</div>
|
2020-01-27 18:29:31 +01:00
|
|
|
{{ end }}
|