hugo-PaperMod/layouts/_default/single.html

54 lines
1.6 KiB
HTML
Raw Normal View History

{{ 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">
<h1 class="post-title">
{{ .Title }}
2020-07-28 09:06:53 +02:00
{{- if .Draft }}<div class="entry-isdraft"><sup>&nbsp;&nbsp;[draft]</sup></div>{{- end }}
</h1>
{{ if .Params.hideMeta }}{{ else }}
2019-03-31 14:32:06 +02:00
<div class="post-meta">
2020-09-15 19:02:34 +02:00
<time>{{ .Date.Format "January 2, 2006" }}</time>
{{ if or .Params.author .Site.Params.author }} . {{ .Params.author | default .Site.Params.author }}{{ end }}
{{ if $.Site.Params.ShowReadingTime }} . {{ .ReadingTime }}{{ i18n "read_time" | default "min read" }}{{ end }}
2019-03-31 14:32:06 +02:00
</div>
{{end}}
2018-01-08 17:28:39 +01:00
</header>
{{ if .Params.cover }}
<figure class="entry-cover">
<img src="{{ .Params.cover | absURL }}" alt="cover image for {{ .Title | plainify }}">
</figure>
{{ end }}
{{ if .Params.ShowToc }}
<div class="toc">
<details {{if .Params.TocOpen }} open{{ end }}>
<summary>
<div class="details">Table of Contents</div>
</summary>
<blockquote>
{{ .TableOfContents }}
</blockquote>
</details>
</div>
{{ end }}
2018-01-08 17:28:39 +01:00
<div class="post-content">{{ .Content }}</div>
<footer class="post-footer">
{{- if .Params.tags }}
2018-01-08 17:28:39 +01:00
<ul class="post-tags">
2020-03-09 16:56:47 +01:00
{{- range .Params.tags }}
{{- $href := print (absLangURL "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>
{{- end }}
{{ if (and .Site.Params.ShowShareButtons (ne .Params.disableShare true) ) }}
{{ partial "share-icons.html" . }}
{{ end }}
2018-01-08 17:28:39 +01:00
</footer>
{{- 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
{{ end }}{{/* end main */}}