2019-04-28 15:19:17 +01:00
|
|
|
{{ if not .Date.IsZero }}
|
2019-04-28 15:30:54 +01:00
|
|
|
<span class="pr-2" title='{{ .Date.Format "January 2 2006" }}'><i class="far fa-calendar-alt pr-1"></i>{{ .Date.Format "2006-01-02" }}</span>
|
2019-04-28 15:25:26 +01:00
|
|
|
{{ end }}
|
|
|
|
|
2020-04-29 12:47:20 +01:00
|
|
|
{{ if not .Parent.IsHome }}
|
|
|
|
{{ if gt .ReadingTime 2 }}
|
2020-08-29 15:46:37 +01:00
|
|
|
<span class="pr-2" title='{{ .WordCount }} words'><i class="far fa-clock pr-1"></i>{{ .ReadingTime }} minutes</span>
|
2020-04-29 12:47:20 +01:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
2019-04-28 15:19:17 +01:00
|
|
|
{{ if .Params.tags }}
|
2021-12-27 10:40:41 +00:00
|
|
|
<a href="{{ ref . "/tags" }}" class="no-color-change mr-1" title="Tags">
|
2020-09-12 00:07:33 +01:00
|
|
|
<i class="fas fa-tags small"></i>
|
|
|
|
</a>
|
2022-01-01 13:36:37 +00:00
|
|
|
{{ range (.Params.tags | sort) }}
|
2021-12-27 10:40:41 +00:00
|
|
|
<a href="/tags/{{ urlize . }}" class="mr-1" title="{{ . }}">#{{ . }}</a>
|
2017-12-22 17:16:20 +00:00
|
|
|
{{ end }}
|
2019-04-28 15:19:17 +01:00
|
|
|
{{ end }}
|