aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/partials/meta-readtime.html
blob: c1d74492911c2d652d3b2ed80ab0bebc2d15ffab (plain)
1
2
3
4
5
6
7
8
9
10
{{- safeHTML (readFile "public/css/icons/feather/clock.svg") -}}

<span>
  {{ $minutes := div .WordCount 150 }}
  {{ if lt $minutes 1 }}
    1 minute read
  {{- else -}}
    {{ $minutes }} minute read
  {{ end }}
</span>