From 23eec0bf8dd0a8a469610fa8d01e8458beab8e9e Mon Sep 17 00:00:00 2001 From: Jakob Meier Date: Sun, 1 Sep 2024 15:33:07 +0200 Subject: [PATCH] Display word count instead of reading time Not everybody has the same reading speed, so we should not assume that everybody reads 212 words per minute. By displaying the word count, the reader can still calculate the reading time themselves, if they know how many words they can read per minute. Or simply use the word count as a measurement of document length. --- layouts/partials/blog-preview.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/blog-preview.html b/layouts/partials/blog-preview.html index 3538d5f..ea825c8 100644 --- a/layouts/partials/blog-preview.html +++ b/layouts/partials/blog-preview.html @@ -5,7 +5,7 @@ {{.Date.Format "January 2, 2006"}} - ({{.ReadingTime}} min) + ({{.WordCount}} words)

{{ .Description }}

-- 2.38.5