From 87f5b7fd2dc9cfe0e052740926830d8dca55b33e Mon Sep 17 00:00:00 2001 From: Ricardo Date: Thu, 5 Mar 2026 14:25:36 +0100 Subject: [PATCH] fix: move post-graph outside tier conditional so it shows on all homepage layouts Confab-Link: http://localhost:8080/sessions/956f4251-b4a9-4bc9-b214-53402ad1fe63 --- _includes/layouts/home.njk | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/_includes/layouts/home.njk b/_includes/layouts/home.njk index f2488b1..0aeb0c6 100644 --- a/_includes/layouts/home.njk +++ b/_includes/layouts/home.njk @@ -106,14 +106,6 @@ withSidebar: true {% endif %} -{# Posting Activity — contribution graph #} -{% if collections.posts and collections.posts.length %} -
-

Posting Activity

- {% postGraph collections.posts %} -
-{% endif %} - {# Explore — quick links to key sections #}

Explore

@@ -149,3 +141,11 @@ withSidebar: true
{% endif %} {# end two-tier fallback #} + +{# Posting Activity — contribution graph (shown on all homepage variants) #} +{% if collections.posts and collections.posts.length %} +
+

Posting Activity

+ {% postGraph collections.posts %} +
+{% endif %}