website-theme/layouts/partials/reading_time.html

9 lines
235 B
HTML
Raw Permalink Normal View History

2022-05-08 18:02:35 -04:00
<!-- Reading Time -->
{{ $readTime := mul (div (countwords .Content) 220.0) 60 }}
{{ if gt $readTime 60 }}
2024-10-29 12:02:03 -04:00
<p class="noprint">
<i class="fas fa-stopwatch"></i>
{{ math.Ceil (div $readTime 60) }} minute
reading time
2022-05-08 18:02:35 -04:00
</p>
{{ end }}