option to write the reading time in the same language as the site

This commit is contained in:
Florian 2023-01-18 16:51:20 +01:00
parent 94d8927676
commit de960997bc
2 changed files with 3 additions and 1 deletions

View file

@ -16,7 +16,7 @@
<span class="post-author">{{ . }}</span>
{{ end }}
{{ if and (.Param "readingTime") (eq (.Param "readingTime") true) }}
<span class="post-reading-time">:: {{ .ReadingTime }} min read ({{ .WordCount }} words)</span>
<span class="post-reading-time">:: {{ .ReadingTime }} {{ $.Site.Params.minuteReadingTime | default "min read" }} ({{ .WordCount }} {{ $.Site.Params.words | default "words" }})</span>
{{ end }}
</div>