mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-10-31 15:25:58 -05:00
Make word count and reading time enabled by default
This commit is contained in:
parent
ffbfc842c2
commit
7749ff39fa
@ -20,7 +20,7 @@ enableGitInfo = true
|
||||
faviconICO = "/favicon.ico"
|
||||
faviconPNG = "/favicon.png"
|
||||
|
||||
# show word count and/or reading time
|
||||
# show word count and/or reading time (enabled by default)
|
||||
wordcount = true
|
||||
readingtime = true
|
||||
|
||||
|
@ -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 }}
|
||||
|
Loading…
Reference in New Issue
Block a user