hugo-PaperMod/layouts/_default/single.html

49 lines
1.3 KiB
HTML
Raw Normal View History

{{ define "main" }}
2019-04-01 04:00:48 -04:00
2019-03-31 08:32:06 -04:00
<article class="post-single">
2018-01-08 11:28:39 -05:00
<header class="post-header">
<h1 class="post-title">
{{ .Title }}
2020-07-28 03:06:53 -04:00
{{- if .Draft }}<div class="entry-isdraft"><sup>&nbsp;&nbsp;[draft]</sup></div>{{- end }}
</h1>
{{ if .Params.hideMeta }}{{ else }}
2019-03-31 08:32:06 -04:00
<div class="post-meta">
2020-03-09 11:56:47 -04:00
{{- if or .Params.author .Site.Params.author }}
{{- .Params.author | default .Site.Params.author }} · {{ end }}
2019-08-19 16:12:49 -04:00
{{- .Date.Format "January 2, 2006" -}}
2019-03-31 08:32:06 -04:00
</div>
{{end}}
2018-01-08 11:28:39 -05:00
</header>
{{ if .Params.ShowToc }}
<div class="toc">
<details>
<summary>
<div class="details">Table of Contents</div>
</summary>
<blockquote>
{{ .TableOfContents }}
</blockquote>
</details>
</div>
{{ end }}
2018-01-08 11:28:39 -05:00
<div class="post-content">{{ .Content }}</div>
2020-03-09 11:56:47 -04:00
{{- if .Params.tags }}
2018-01-08 11:28:39 -05:00
<footer class="post-footer">
<ul class="post-tags">
2020-03-09 11:56:47 -04:00
{{- range .Params.tags }}
{{- $href := print (absURL "tags/") (urlize .) }}
2019-08-21 00:03:12 -04:00
<li><a href="{{ $href }}">{{ . }}</a></li>
2020-03-09 11:56:47 -04:00
{{- end }}
2018-01-08 11:28:39 -05:00
</ul>
{{ if .Site.Params.ShowShareButtons }}
{{ partial "share-icons.html" . }}
{{ end }}
2018-01-08 11:28:39 -05:00
</footer>
2020-03-09 11:56:47 -04:00
{{- end }}
{{- if $.Site.Params.comments }}
{{- partial "comments.html" . }}
2020-03-09 11:56:47 -04:00
{{- end }}
2018-01-08 11:28:39 -05:00
</article>
2019-04-01 04:00:48 -04:00
{{ end }}{{/* end main */}}