2020-07-20 17:02:07 +02:00
|
|
|
{{ define "main" }}
|
2019-04-01 10:00:48 +02:00
|
|
|
|
2019-03-31 14:32:06 +02:00
|
|
|
<article class="post-single">
|
2018-01-08 17:28:39 +01:00
|
|
|
<header class="post-header">
|
2020-07-24 17:16:33 +02:00
|
|
|
<h1 class="post-title">
|
|
|
|
{{ .Title }}
|
|
|
|
<div class="entry-isdraft">{{- if .Draft }}<sup>[draft]</sup>{{- end }}</div>
|
|
|
|
</h1>
|
2019-03-31 14:32:06 +02:00
|
|
|
<div class="post-meta">
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- if or .Params.author .Site.Params.author }}
|
|
|
|
{{- .Params.author | default .Site.Params.author }} · {{ end }}
|
2019-08-19 22:12:49 +02:00
|
|
|
{{- .Date.Format "January 2, 2006" -}}
|
2019-03-31 14:32:06 +02:00
|
|
|
</div>
|
2018-01-08 17:28:39 +01:00
|
|
|
</header>
|
|
|
|
<div class="post-content">{{ .Content }}</div>
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- if .Params.tags }}
|
2018-01-08 17:28:39 +01:00
|
|
|
<footer class="post-footer">
|
|
|
|
<ul class="post-tags">
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- range .Params.tags }}
|
|
|
|
{{- $href := print (absURL "tags/") (urlize .) }}
|
2019-08-21 06:03:12 +02:00
|
|
|
<li><a href="{{ $href }}">{{ . }}</a></li>
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- end }}
|
2018-01-08 17:28:39 +01:00
|
|
|
</ul>
|
|
|
|
</footer>
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- end }}
|
2020-07-20 16:41:58 +02:00
|
|
|
|
|
|
|
{{- if $.Site.Params.comments }}
|
|
|
|
{{- partial "comments.html" . }}
|
2020-03-09 16:56:47 +01:00
|
|
|
{{- end }}
|
2018-01-08 17:28:39 +01:00
|
|
|
</article>
|
2019-04-01 10:00:48 +02:00
|
|
|
|
2020-07-20 17:02:07 +02:00
|
|
|
{{ end }}{{/* end main */}}
|