devroom.io/themes/devroom-2020/layouts/partials/post.html

31 lines
855 B
HTML
Raw Normal View History

2020-03-11 09:18:52 +00:00
{{ $lastmod := .Lastmod.Format "2006-01-02" }}
{{ $date := .Date.Format "2006-01-02" }}
2020-03-09 10:40:44 +00:00
<article>
<h1>{{ .Title }}</h1>
<div class="meta">
2021-04-09 11:57:27 +00:00
| Posted: <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
2020-03-09 10:40:44 +00:00
{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02" ) }}
</time>
2020-03-11 09:18:52 +00:00
{{ if not (eq $lastmod $date) }}
- Last updated: <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
{{ .Lastmod.Format (.Site.Params.dateFormat | default "2006-01-02" ) }}
</time>
{{ end }}
2021-04-09 11:57:27 +00:00
2020-03-11 09:18:52 +00:00
<br />
2021-04-09 11:57:27 +00:00
| Tagged
2020-03-09 10:40:44 +00:00
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
2021-04-09 11:57:27 +00:00
<br />
| ~{{ .FuzzyWordCount }}wrds
(~{{ .ReadingTime }}min)
2020-03-09 10:40:44 +00:00
</div>
{{ .Content }}
2020-03-11 09:18:52 +00:00
</article>