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

24 lines
803 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">
2022-07-27 11:59:46 +00:00
Posted: <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02" ) }}</time>
~{{ .FuzzyWordCount }} words
~{{ .ReadingTime }} min
2022-01-14 12:27:13 +00:00
2020-03-11 09:18:52 +00:00
{{ if not (eq $lastmod $date) }}
2022-07-27 11:59:46 +00:00
Last updated: <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
2020-03-11 09:18:52 +00:00
{{ .Lastmod.Format (.Site.Params.dateFormat | default "2006-01-02" ) }}
</time>
{{ end }}
<br />
2022-07-27 11:59:46 +00:00
Tagged
2022-01-14 12:27:13 +00:00
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
2020-03-09 10:40:44 +00:00
</div>
{{ .Content }}
2020-03-11 09:18:52 +00:00
</article>