2020-07-20 20:32:07 +05:30
|
|
|
{{ define "main" }}
|
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">
|
2020-07-24 20:46:33 +05:30
|
|
|
<h1 class="post-title">
|
|
|
|
{{ .Title }}
|
2020-07-28 12:36:53 +05:30
|
|
|
{{- if .Draft }}<div class="entry-isdraft"><sup> [draft]</sup></div>{{- end }}
|
2020-07-24 20:46:33 +05:30
|
|
|
</h1>
|
2020-08-20 22:28:54 +05:30
|
|
|
{{ if .Params.hideMeta }}{{ else }}
|
2019-03-31 20:32:06 +08:00
|
|
|
<div class="post-meta">
|
2020-09-15 22:32:34 +05:30
|
|
|
<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 20:32:06 +08:00
|
|
|
</div>
|
2020-08-20 22:28:54 +05:30
|
|
|
{{end}}
|
2018-01-09 00:28:39 +08:00
|
|
|
</header>
|
2020-09-14 17:45:22 +05:30
|
|
|
{{ if .Params.cover }}
|
|
|
|
<figure class="entry-cover">
|
|
|
|
<img src="{{ .Params.cover | absURL }}" alt="cover image for {{ .Title | plainify }}">
|
|
|
|
</figure>
|
|
|
|
{{ end }}
|
2020-07-24 22:03:13 +05:30
|
|
|
{{ if .Params.ShowToc }}
|
2020-07-24 23:53:25 +05:30
|
|
|
<div class="toc">
|
2020-09-16 15:41:28 +05:30
|
|
|
<details {{if .Params.TocOpen }} open{{ end }}>
|
2020-07-24 23:53:25 +05:30
|
|
|
<summary>
|
|
|
|
<div class="details">Table of Contents</div>
|
|
|
|
</summary>
|
|
|
|
<blockquote>
|
2020-09-19 17:03:27 +05:30
|
|
|
{{ partial "toc.html" . }}
|
2020-07-24 23:53:25 +05:30
|
|
|
</blockquote>
|
|
|
|
</details>
|
|
|
|
</div>
|
2020-07-24 22:03:13 +05:30
|
|
|
{{ end }}
|
2018-01-09 00:28:39 +08:00
|
|
|
<div class="post-content">{{ .Content }}</div>
|
|
|
|
<footer class="post-footer">
|
2020-08-23 16:35:53 +05:30
|
|
|
{{- if .Params.tags }}
|
2018-01-09 00:28:39 +08:00
|
|
|
<ul class="post-tags">
|
2020-03-09 23:56:47 +08:00
|
|
|
{{- range .Params.tags }}
|
2020-08-25 01:40:02 +05:30
|
|
|
{{- $href := print (absLangURL "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>
|
2020-08-23 16:35:53 +05:30
|
|
|
{{- end }}
|
2020-08-28 16:39:06 +05:30
|
|
|
{{ if (and .Site.Params.ShowShareButtons (ne .Params.disableShare true) ) }}
|
2020-07-27 14:27:38 +05:30
|
|
|
{{ partial "share-icons.html" . }}
|
|
|
|
{{ end }}
|
2018-01-09 00:28:39 +08:00
|
|
|
</footer>
|
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 20:32:07 +05:30
|
|
|
{{ end }}{{/* end main */}}
|