redstrate.com/themes/red/layouts/_default/single.html

36 lines
852 B
HTML
Raw Normal View History

2022-08-02 14:05:56 -04:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
2022-12-27 22:34:31 -05:00
{{ if in .File.Dir "blog" }}
<i style="margin: 0">
2022-12-27 22:34:31 -05:00
Posted on
2023-04-17 15:18:56 -04:00
<time datetime="{{ .Page.Lastmod.Format "2006-01-02" }}" class="text-muted">
2022-12-27 22:34:31 -05:00
{{ $.Date.Format "January 02, 2006" }}
</time>
(Updated on
2023-04-17 15:18:56 -04:00
<time datetime="{{ .Page.Lastmod.Format "2006-01-02" }}" class="text-muted">
2022-12-27 22:34:31 -05:00
{{ $.Page.Lastmod.Format "January 02, 2006" }}
</time>)
</i>
{{ end }}
2022-08-02 14:05:56 -04:00
2023-02-23 17:39:20 -05:00
<hr>
2023-04-17 16:01:13 -04:00
{{ if or (gt .WordCount 400 ) (.Params.toc) }}
<details>
<summary>Table of Contents</summary>
{{ .Page.TableOfContents }}
</details>
{{ end }}
{{ .Content }}
2022-09-12 10:53:34 -04:00
2022-12-27 22:34:31 -05:00
{{ partial "related" . }}
{{ if in .File.Dir "blog" }}
{{ partial "voting" . }}
2022-12-27 22:34:31 -05:00
{{ partial "comments" . }}
{{ end }}
2022-08-02 14:05:56 -04:00
{{ end }}