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-17 14:02:27 +01:00
|
|
|
{{- partial "function/image.html" (dict "src" $image "alt" "featured image") -}}
|
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">
|
2019-08-24 13:32:41 +02:00
|
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
|
|
</h1>
|
|
|
|
|
2020-02-03 11:38:10 +01:00
|
|
|
{{- /* Meta */ -}}
|
2020-02-13 18:30:33 +01:00
|
|
|
<div class="meta">
|
2020-02-03 11:38:10 +01:00
|
|
|
{{- $author := .Params.author | default .Site.Author.name -}}
|
2020-02-17 05:44:04 +01:00
|
|
|
{{- $authorLink := .Params.authorLink | default .Site.Author.link | default .Site.BaseURL -}}
|
|
|
|
<a class="author" href="{{ $authorLink }}" rel="author" target="_blank">
|
2020-02-03 11:38:10 +01:00
|
|
|
<i class="fas fa-user-circle fa-fw"></i>{{ $author }}
|
2020-01-31 18:52:27 +01:00
|
|
|
</a>
|
2020-02-03 11:38:10 +01:00
|
|
|
|
|
|
|
{{- $publish_date := .PublishDate.Format (.Site.Params.dateFormatToUse | default "2006-01-02") -}}
|
|
|
|
{{ T "publish" }} <time datetime={{ $publish_date }}>{{ $publish_date }}</time>
|
|
|
|
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- with .Params.categories -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
<span class="post-category">
|
2020-01-31 18:52:27 +01:00
|
|
|
{{- T "included" -}}
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- range . -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
{{- $name := . -}}
|
|
|
|
{{- with $.Site.GetPage "taxonomy" (printf "categories/%s" $name) | default ($.Site.GetPage "taxonomy" (printf "categories/%s" ($name | urlize))) -}}
|
2020-01-31 15:53:04 +01:00
|
|
|
<i class="far fa-folder fa-fw"></i>
|
2020-02-01 12:47:58 +01:00
|
|
|
<a href="{{ .Permalink }}">{{ $name | humanize }}</a>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
|
|
|
{{- 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-17 14:02:27 +01:00
|
|
|
{{- partial "function/content.html" .Summary -}}
|
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-01-30 06:17:42 +01:00
|
|
|
<a href="{{ .Permalink }}">{{ 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-01-31 18:52:27 +01:00
|
|
|
<span class="tag">
|
|
|
|
<a href="{{ "tags/" | absURL }}{{ . | urlize }}/"><i class="fas fa-tag fa-fw"></i> {{ . }}</a>
|
|
|
|
</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>
|