From 5e60c49e0bbc8229e5b8b25fcbb6aca5cda2c72f Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Sun, 18 Dec 2022 01:55:47 -0500 Subject: [PATCH] Removed shortest post from stats added year count --- layouts/_default/stats.html | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/layouts/_default/stats.html b/layouts/_default/stats.html index 4cc9677..7dd3f6a 100644 --- a/layouts/_default/stats.html +++ b/layouts/_default/stats.html @@ -9,10 +9,9 @@ {{ $posts := where site.RegularPages "Type" "blog" }} {{ $postCount := len $posts }} - + {{ $scratch := newScratch }} {{ $scratch.Set "longCount" 0 }} - {{ $scratch.Set "shortCount" 9999999999 }} {{ range $posts }} {{ $scratch.Add "wordcount" .WordCount }} @@ -21,11 +20,6 @@ {{ $scratch.Set "longestPost" . }} {{ $scratch.Set "longCount" .WordCount }} {{ end }} - - {{ if le .WordCount ($scratch.Get "shortCount") }} - {{ $scratch.Set "shortestPost" . }} - {{ $scratch.Set "shortCount" .WordCount }} - {{ end }} {{ end }} @@ -35,8 +29,15 @@ {{ $avgPostLength := div $wordCount $postCount }} - - + {{ range last 1 $posts }} + {{ $numYears := div (sub now.Unix .Date.Unix) 31536000 }} + + + {{ end }} + + + + @@ -66,14 +67,6 @@ {{ end }} - - - -
Total Posts Published{{ $postCount | lang.NumFmt 0 }}Years Blogging{{ $numYears | lang.NumFmt 0 }}
Total Posts Published{{ $postCount | lang.NumFmt 0 }}
Total Words Written
Shortest Post Published - {{ with $scratch.Get "shortestPost" }} - {{ .Title }} with {{ .WordCount }} words - {{ end }} -
{{ $grouped := $posts.GroupByDate "2006" }}