2020-03-09 11:56:47 -04:00
|
|
|
{{- partial "header.html" . }}
|
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 }}
|
2020-07-20 10:41:58 -04:00
|
|
|
|
|
|
|
{{- 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
|
|
|
|
2020-07-20 10:23:30 -04:00
|
|
|
{{- partial "footer.html" . }}
|