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

31 lines
855 B
HTML

{{ $lastmod := .Lastmod.Format "2006-01-02" }}
{{ $date := .Date.Format "2006-01-02" }}
<article>
<h1>{{ .Title }}</h1>
<div class="meta">
| Posted: <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02" ) }}
</time>
{{ 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 }}
<br />
| Tagged
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
<br />
| ~{{ .FuzzyWordCount }}wrds
(~{{ .ReadingTime }}min)
</div>
{{ .Content }}
</article>