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

27 lines
867 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">
2020-03-11 09:18:52 +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 }}
<div class="reading-time">
~{{ .FuzzyWordCount }}wrds
(~{{ .ReadingTime }}min)
</div>
<br />
Tagged
2020-03-09 10:40:44 +00:00
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
</div>
{{ .Content }}
2020-03-11 09:18:52 +00:00
</article>