hugo-theme-terminal/layouts/_default/single.html

57 lines
1.7 KiB
HTML
Raw Normal View History

2019-01-28 00:11:02 +00:00
{{ define "main" }}
2019-03-31 17:28:38 +00:00
<div class="post">
<h1 class="post-title">
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
<div class="post-meta">
{{ if .Params.Date }}
2019-03-20 23:40:07 +00:00
<span class="post-date">
2021-10-24 08:43:59 +00:00
{{ .Date.Format "2006-01-02" }}
{{ if $.Site.Params.showLastUpdated }}
[{{or $.Site.Params.updatedDatePrefix "Updated"}}: {{ .Lastmod.Format "2006-01-02" }}]
{{ end }}
2019-03-20 23:40:07 +00:00
</span>
{{ end }}
2019-03-31 17:28:38 +00:00
{{ with .Params.Author }}
2021-10-24 08:43:59 +00:00
<span class="post-author">:: {{ . }}</span>
{{ end }}
{{ if and (.Param "readingTime") (eq (.Param "readingTime") true) }}
<span class="post-reading-time">:: {{ .ReadingTime }} min read ({{ .WordCount }} words)</span>
2019-01-28 00:11:02 +00:00
{{ end }}
2019-03-31 17:28:38 +00:00
</div>
2019-01-28 00:11:02 +00:00
2019-03-31 17:28:38 +00:00
{{ if .Params.tags }}
<span class="post-tags">
{{ range .Params.tags }}
2019-04-05 06:18:21 +00:00
#<a href="{{ (urlize (printf "tags/%s/" .)) | absLangURL }}">{{ . }}</a>&nbsp;
2019-01-28 00:11:02 +00:00
{{ end }}
2019-03-31 17:28:38 +00:00
</span>
{{ end }}
{{ partial "cover.html" . }}
2019-03-20 23:40:07 +00:00
2022-02-05 10:28:12 +00:00
{{ if (.Params.Toc | default .Site.Params.Toc) }}
2019-03-20 23:40:07 +00:00
<div class="table-of-contents">
<h2>
2022-02-05 10:28:12 +00:00
{{ (.Params.TocTitle | default .Site.Params.TocTitle) | default "Table of Contents" }}
</h2>
2019-03-20 23:40:07 +00:00
{{ .TableOfContents }}
</div>
2019-03-31 17:28:38 +00:00
{{ end }}
2019-03-31 17:18:08 +00:00
2019-03-31 17:28:38 +00:00
<div class="post-content">
{{- with .Content -}}
2020-01-17 12:11:41 +00:00
<div>
2020-01-24 07:21:30 +00:00
{{ . | replaceRE "(<h[1-9] id=\"([^\"]+)\".+)(</h[1-9]+>)" `${1}<a href="#${2}" class="hanchor" ariaLabel="Anchor">&#8983;</a> ${3}` | safeHTML }}
2020-01-17 12:11:41 +00:00
</div>
2020-01-24 07:21:30 +00:00
{{- end -}}
2019-01-28 00:11:02 +00:00
</div>
2019-03-20 23:40:07 +00:00
{{ if eq .Type $.Site.Params.contentTypeName }}
{{ partial "posts_pagination.html" . }}
2019-03-31 17:28:38 +00:00
{{ end }}
{{ if not (.Params.hideComments | default false) }}
2019-03-31 17:28:38 +00:00
{{ partial "comments.html" . }}
{{ end }}
2019-03-31 17:28:38 +00:00
</div>
2019-01-28 00:11:02 +00:00
{{ end }}