mirror of
https://github.com/ItsDrike/itsdrike.com.git
synced 2024-11-10 05:59:41 +00:00
28 lines
854 B
HTML
28 lines
854 B
HTML
{{ if not .Date.IsZero }}
|
|
<span class="pr-2" title='{{ .Date.Format "January 2 2006" }}'>
|
|
<i class="far fa-calendar-alt pr-1 content-detail"></i> {{ .Date.Format "2006-01-02" }}
|
|
</span>
|
|
{{ end }}
|
|
|
|
{{ if not .Parent.IsHome }}
|
|
{{ if gt .ReadingTime 2 }}
|
|
<span class="pr-2" title="Reading time">
|
|
<i class="far fa-clock pr-1 content-detail"></i> {{ .ReadingTime }} minutes
|
|
</span>
|
|
{{ end }}
|
|
<span class="pr-2" title="Word count">
|
|
<i class="far fa-file-alt pr-1 content-detail"></i> {{ .WordCount }} words
|
|
</span>
|
|
{{ end }}
|
|
|
|
{{ if .Params.tags }}
|
|
<span class="pr-2" title="Tags">
|
|
<a href="{{ ref . " /tags" }}" class="no-color-change mr-1">
|
|
<i class="fas fa-tags small content-detail"></i>
|
|
</a>
|
|
{{ range $i, $e := .Params.tags }}
|
|
<a href="/tags/{{ urlize . }}" class="mr-1">#{{ . }}</a>
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|