hugo-PaperMod/layouts/_default/single.html

29 lines
793 B
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 }}</h1>
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>
2018-01-08 11:28:39 -05:00
</header>
<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>
</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 */}}