blob: 4512b169e9a87ad11f385b8ace90d926ceb326e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<div class='post' style="margin-bottom: 2em;">
<div>
<h1 class="f3 near-black">
<a href="{{ .RelPermalink }}" class="link black dim">
{{ .Title }}
</a>
{{ if isset .Params "rating" }}
{{ .Params.rating }}
{{ end }}
</h1>
<p>
<span>{{ .WordCount }} words</span>
<span>{{ .ReadingTime }} min read</span>
</p>
<p>Published: {{ .Date | time.Format ":date_full" }}
</p>
<div>{{ .Summary | markdownify }}</div>
</div>
</div>
|