aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/word-count.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/layouts/partials/word-count.html')
-rw-r--r--themes/default/layouts/partials/word-count.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/default/layouts/partials/word-count.html b/themes/default/layouts/partials/word-count.html
new file mode 100644
index 0000000..f566b07
--- /dev/null
+++ b/themes/default/layouts/partials/word-count.html
@@ -0,0 +1,14 @@
+{{ $author := index .Site.Data.authors ((or .Params.author .Site.Author.default.user) | default "default") }}
+{{ $limit := $author.wordlimit }}
+{{ $wordLimit := gt .WordCount $limit }}
+{{ $overLimit := sub .WordCount $limit }}
+
+<word-limit title="{{- if $wordLimit -}}{{ $overLimit }} words over the limit{{ else }} {{ .WordCount }} words {{ end }}">
+ <word-count>
+ {{- if $wordLimit -}}
+ <em>{{ .WordCount }}</em>
+ {{- else -}}
+ {{ .WordCount }}
+ {{- end -}}
+ </word-count>/{{ $limit }} words
+</word-limit>