From e3e4d58fa5b75fe1f93bbc62e50205dccdbd6659 Mon Sep 17 00:00:00 2001
From: Cory Dransfeldt <hi@coryd.dev>
Date: Mon, 29 Jan 2024 12:32:13 -0800
Subject: [PATCH] fix: spacing + typos

---
 src/pages/stats.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/pages/stats.html b/src/pages/stats.html
index 16324038..82472b24 100644
--- a/src/pages/stats.html
+++ b/src/pages/stats.html
@@ -6,7 +6,7 @@ image: /assets/img/ogi/stats.jpg
 ---
 <p>My first post was published on <strong class="highlight-text">{{ collections.postStats.firstPostDate | dateToReadableDate }}</strong> and my most recent one was published on <strong class="highlight-text">{{ collections.postStats.lastPostDate | dateToReadableDate }}</strong>. I've published <strong class="highlight-text">{{ collections.postStats.postCount }} posts</strong> containing <strong class="highlight-text">{{ collections.postStats.totalWordCount }} words</strong> and <strong class="highlight-text">{{ collections.postStats.totalCodeBlockCount }} code samples</strong>.</p>
 <p>Posts have, on average, <strong class="highlight-text">{{ collections.postStats.avgWordCount | round }} words</strong> and a gap of <strong class="highlight-text">{{ collections.postStats.avgDays | round }} days</strong> between them.</p>
-<strong>Popular posts</strong>
+<p><strong>Popular posts</strong></p>
 <ol class="link__list">
   {% assign posts = collections.posts | getPopularPosts: analytics %}
   {% for post in posts limit: 10 %}
@@ -17,7 +17,7 @@ image: /assets/img/ogi/stats.jpg
   </li>
   {% endfor %}
 </ol>
-<strong>Posts by year</strong>
+<p><strong>Posts by year</strong></p>
 {% render "partials/post-graph.liquid", postYears: collections.postStats.years %}
-<strong>Post distribution graphs</stron>
+<p><strong>Post distribution graphs</strong></p>
 {%- postGraph collections.posts -%}
\ No newline at end of file