1
Fork 0
theorangeone.net-legacy/layouts/partials/content-details.html

19 lines
659 B
HTML
Raw Permalink Normal View History

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 }}
{{ 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>
{{ 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">
<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>
{{ end }}
2019-04-28 15:19:17 +01:00
{{ end }}