blob: baab03a69540402ff9f16a01d12b8c11d8d0dfbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{{ $dateTime := .PublishDate.Format "2006-01-02" }}
{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }}
<p class="f6 lh-copy mv0 ph4 pv2">
By
{{ with .Params.author }}
<span class="author"> — {{ delimit . ", " }} </span>
{{ end }}
<br />
<i class="far fa-calendar"></i>
<time datetime="{{ $dateTime }}">
{{ .PublishDate.Format $dateFormat }}
</time>
| {{ .ReadingTime }} mins read
{{ with .Params.tags }}
| <i class="fas fa-tags"></i>
{{ range . }}
{{ $href := print (absURL "tags/") (urlize .) }}
<a class="link underline near-black" href="{{ $href }}">{{ . }}</a>
{{ end }}
{{ end }}
{{ with .Params.categories }}
| <i class="fas fa-bookmark"></i>
{{ range . }}
{{ $href := print (absURL "tags/") (urlize .) }}
<a class="link underline near-black" href="{{ $href }}">{{ . }}</a>
{{ end }}
{{ end }}
</p>
|