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

58 lines
1.6 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">
{{ .Date.Format "2006-01-02" }} {{ if $.Site.Params.showLastUpdated }}[{{or $.Site.Params.updatedDatePrefix "Updated"}}: {{ .Lastmod.Format "2006-01-02" }}]{{ end }}
</span>
{{ end }}
2019-03-31 17:28:38 +00:00
{{ with .Params.Author }}
2020-07-16 21:56:01 +00:00
<span class="post-author">:: {{ . }}</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 }}
2019-01-28 00:11:02 +00:00
{{ if .Params.Cover }}
<img src="{{ .Params.Cover | absURL }}" class="post-cover" alt="{{ .Title | plainify | default " " }}" />
2019-03-20 23:40:07 +00:00
{{ end }}
{{ if .Params.Toc }}
<div class="table-of-contents">
<h2>
{{ if .Params.TocTitle }}
{{ .Params.TocTitle }}
{{ else if $.Site.Params.TocTitle }}
{{ $.Site.Params.TocTitle }}
{{ else }}
Table of Contents
{{ end }}
</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 }}
{{ partial "comments.html" . }}
</div>
2019-01-28 00:11:02 +00:00
{{ end }}