43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<div
|
|
class="text-tertiary-text not-prose mt-2 flex flex-row flex-wrap items-center"
|
|
>
|
|
<div class="me-6 my-2">
|
|
<i class="fas fa-calendar me-1"></i>
|
|
<span
|
|
>{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02") }}</span
|
|
>
|
|
</div>
|
|
<div class="me-6 my-2">
|
|
<i class="fas fa-clock me-1"></i>
|
|
<span>{{ i18n "readingTime" .ReadingTime }}</span>
|
|
</div>
|
|
|
|
{{ with .GetTerms "categories" }}
|
|
<div class="me-6 my-2">
|
|
<i class="fas fa-folder me-1"></i>
|
|
{{ range $index, $value := . }}
|
|
{{ if gt $index 0 }}
|
|
<span>, </span>
|
|
{{ end -}}
|
|
<a href="{{ .Permalink }}" class="hover:text-eureka"
|
|
>{{ .LinkTitle }}</a
|
|
>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ with .GetTerms "series" }}
|
|
<div class="me-6 my-2">
|
|
<i class="fas fa-th-list me-1"></i>
|
|
{{ range $index, $value := . }}
|
|
{{ if gt $index 0 }}
|
|
<span>, </span>
|
|
{{ end -}}
|
|
<a href="{{ .Permalink }}" class="hover:text-eureka"
|
|
>{{ .LinkTitle }}</a
|
|
>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|