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

16 lines
462 B
HTML
Raw Normal View History

2020-03-09 10:40:44 +00:00
<article>
<h1>{{ .Title }}</h1>
<div class="meta">
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02" ) }}
</time>
-
tagged
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
-
{{ .ReadingTime }}min
-
{{ .FuzzyWordCount }}wrds
</div>
{{ .Content }}
</article>