Make word count and reading time enabled by default

This commit is contained in:
2021-10-22 23:05:51 -05:00
parent ffbfc842c2
commit 7749ff39fa
2 changed files with 3 additions and 3 deletions

View File

@ -29,14 +29,14 @@
</span>
{{ end }}
{{ if .Site.Params.wordcount }}
{{ if ne .Site.Params.wordcount false }}
<span class="post-meta-item">
{{ partial "icon.html" "type" }}
{{ i18n "wordcount" .WordCount }}
</span>
{{ end }}
{{ if .Site.Params.readingtime }}
{{ if ne .Site.Params.readingtime false }}
<span class="post-meta-item">
{{ partial "icon.html" "clock" }}
{{ i18n "readingtime" .ReadingTime }}