From 77c840e6fdeb4076c105958049bf1edee794a713 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 23 Dec 2023 09:49:24 -0800 Subject: [PATCH] fix: sequentially order headers --- src/pages/stats.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/stats.html b/src/pages/stats.html index 199a7a83..0cd216a5 100644 --- a/src/pages/stats.html +++ b/src/pages/stats.html @@ -5,7 +5,7 @@ permalink: /stats.html ---

My first post was published on {{ collections.postStats.firstPostDate | dateToReadableDate }} and my most recent one was published on {{ collections.postStats.lastPostDate | dateToReadableDate }}. I've published {{ collections.postStats.postCount }} posts containing {{ collections.postStats.totalWordCount }} words and {{ collections.postStats.totalCodeBlockCount }} code samples.

Posts have, on average, {{ collections.postStats.avgWordCount | round }} words and a gap of {{ collections.postStats.avgDays | round }} days between them.

-

Popular posts

+

Popular posts

    {% assign posts = collections.posts | getPopularPosts: analytics %} {% for post in posts limit: 10 %} @@ -18,5 +18,5 @@ permalink: /stats.html

Posts by year

{% render "partials/post-graph.liquid", postYears: collections.postStats.years %} -

Post distribution graphs

+

Post distribution graphs

{%- postGraph collections.posts -%} \ No newline at end of file