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

31 lines
741 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
<time datetime="{{ .Page.Lastmod.Format "Mon Jan 10 17:13:38 2020 -0700" }}" class="text-muted">
{{ $.Date.Format "January 02, 2006" }}
</time>
(Updated on
<time datetime="{{ .Page.Lastmod.Format "Mon Jan 10 17:13:38 2020 -0700" }}" class="text-muted">
{{ $.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>
2022-09-26 11:07:29 -04:00
<div>
2022-12-27 22:34:31 -05:00
{{ .Content }}
2022-09-22 12:25:08 -04:00
</div>
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 }}