2020-02-27 13:14:40 +01:00
|
|
|
{{- $scratch := .Scratch.Get "scratch" -}}
|
|
|
|
|
2020-02-13 18:30:33 +01:00
|
|
|
<article class="single summary" itemscope itemtype="http://schema.org/Article">
|
2020-02-03 11:38:10 +01:00
|
|
|
{{- /* Featured image */ -}}
|
2020-02-17 05:44:04 +01:00
|
|
|
{{- with .Params.featuredImage -}}
|
2020-02-13 18:30:33 +01:00
|
|
|
<div class="featured-image-preview">
|
2020-02-17 05:44:04 +01:00
|
|
|
{{- $image := $.Params.featuredImagePreview | default . -}}
|
2020-02-27 13:14:40 +01:00
|
|
|
{{- partial "plugin/image.html" (dict "src" $image "description" $.Description "scratch" $scratch) -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
</div>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2020-02-03 04:46:30 +01:00
|
|
|
|
2020-02-03 11:38:10 +01:00
|
|
|
{{- /* Title */ -}}
|
2020-02-13 18:30:33 +01:00
|
|
|
<h1 class="single-title" itemprop="name headline">
|
2020-03-09 13:25:55 +01:00
|
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
2019-08-24 13:32:41 +02:00
|
|
|
</h1>
|
|
|
|
|
2020-02-03 11:38:10 +01:00
|
|
|
{{- /* Meta */ -}}
|
2020-02-21 05:49:55 +01:00
|
|
|
<div class="post-meta">
|
2020-03-08 14:02:21 +01:00
|
|
|
{{- $author := .Params.author | default .Site.Author.name | default (T "author") -}}
|
2020-02-19 11:48:37 +01:00
|
|
|
{{- $authorLink := .Params.authorLink | default .Site.Author.link | default (relLangURL "/") -}}
|
2020-02-21 05:49:55 +01:00
|
|
|
<span class="post-author">
|
2020-03-09 20:33:28 +01:00
|
|
|
{{- $link := dict "class" "author" "href" $authorLink "title" "Author" "rel" "author" "icon" (dict "class" "fas fa-user-circle fa-fw") "content" $author -}}
|
|
|
|
{{- partial "plugin/link.html" $link -}}
|
2020-02-21 05:49:55 +01:00
|
|
|
</span>
|
2020-02-03 11:38:10 +01:00
|
|
|
|
|
|
|
{{- $publish_date := .PublishDate.Format (.Site.Params.dateFormatToUse | default "2006-01-02") -}}
|
2020-02-21 05:49:55 +01:00
|
|
|
<span class="post-publish">
|
|
|
|
{{ T "publish" }} <time datetime={{ $publish_date }}>{{ $publish_date }}</time>
|
|
|
|
</span>
|
2020-02-03 11:38:10 +01:00
|
|
|
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- with .Params.categories -}}
|
2020-02-21 05:49:55 +01:00
|
|
|
<span class="post-category">
|
|
|
|
{{- T "included" -}}
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- range . -}}
|
2020-02-21 05:49:55 +01:00
|
|
|
|
|
|
|
<span>
|
|
|
|
<a href="{{ `/categories/` | relLangURL }}{{ urlize .}}">
|
|
|
|
<i class="far fa-folder fa-fw"></i>{{ . | humanize }}
|
|
|
|
</a>
|
|
|
|
</span>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
</span>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
</div>
|
2020-02-03 11:38:10 +01:00
|
|
|
|
2020-02-03 16:27:54 +01:00
|
|
|
{{- /* Summary content */ -}}
|
2020-02-13 18:30:33 +01:00
|
|
|
<div class="content">
|
2020-02-21 18:14:01 +01:00
|
|
|
{{- with .Summary -}}
|
|
|
|
{{- partial "single/content.html" . -}}
|
|
|
|
{{- else -}}
|
|
|
|
{{- .Description | safeHTML -}}
|
|
|
|
{{- end -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
</div>
|
2020-02-03 11:38:10 +01:00
|
|
|
|
|
|
|
{{- /* Footer */ -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
<div class="post-footer">
|
2020-03-09 13:25:55 +01:00
|
|
|
<a href="{{ .RelPermalink }}">{{ T "readMore" }}</a>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- with .Params.tags -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
<div class="post-tags">
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- range . -}}
|
2020-02-21 05:49:55 +01:00
|
|
|
<span>
|
|
|
|
<a href="{{ `/tags/` | relLangURL }}{{ urlize .}}">
|
|
|
|
<i class="fas fa-tag fa-fw"></i>{{ . }}
|
|
|
|
</a>
|
2020-01-31 18:52:27 +01:00
|
|
|
</span>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
</div>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
</div>
|
2020-02-06 17:10:00 +01:00
|
|
|
</article>
|