2020-03-09 23:56:47 +08:00
|
|
|
{{- partial "header.html" . }}
|
2019-04-01 16:00:48 +08:00
|
|
|
|
2019-03-31 20:32:06 +08:00
|
|
|
<article class="post-single">
|
2018-01-09 00:28:39 +08:00
|
|
|
<header class="post-header">
|
|
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
2019-03-31 20:32:06 +08:00
|
|
|
<div class="post-meta">
|
2020-03-09 23:56:47 +08:00
|
|
|
{{- if or .Params.author .Site.Params.author }}
|
|
|
|
{{- .Params.author | default .Site.Params.author }} · {{ end }}
|
2019-08-20 04:12:49 +08:00
|
|
|
{{- .Date.Format "January 2, 2006" -}}
|
2019-03-31 20:32:06 +08:00
|
|
|
</div>
|
2018-01-09 00:28:39 +08:00
|
|
|
</header>
|
|
|
|
<div class="post-content">{{ .Content }}</div>
|
2020-03-09 23:56:47 +08:00
|
|
|
{{- if .Params.tags }}
|
2018-01-09 00:28:39 +08:00
|
|
|
<footer class="post-footer">
|
|
|
|
<ul class="post-tags">
|
2020-03-09 23:56:47 +08:00
|
|
|
{{- range .Params.tags }}
|
|
|
|
{{- $href := print (absURL "tags/") (urlize .) }}
|
2019-08-21 12:03:12 +08:00
|
|
|
<li><a href="{{ $href }}">{{ . }}</a></li>
|
2020-03-09 23:56:47 +08:00
|
|
|
{{- end }}
|
2018-01-09 00:28:39 +08:00
|
|
|
</ul>
|
|
|
|
</footer>
|
2020-03-09 23:56:47 +08:00
|
|
|
{{- end }}
|
2020-07-20 20:11:58 +05:30
|
|
|
|
|
|
|
{{- if $.Site.Params.comments }}
|
|
|
|
{{- partial "comments.html" . }}
|
2020-03-09 23:56:47 +08:00
|
|
|
{{- end }}
|
2018-01-09 00:28:39 +08:00
|
|
|
</article>
|
2019-04-01 16:00:48 +08:00
|
|
|
|
2020-07-20 19:53:30 +05:30
|
|
|
{{- partial "footer.html" . }}
|