diff --git a/_includes/components/widgets/ai-usage.njk b/_includes/components/widgets/ai-usage.njk index abb6df5..977f602 100644 --- a/_includes/components/widgets/ai-usage.njk +++ b/_includes/components/widgets/ai-usage.njk @@ -13,19 +13,19 @@ {# Mini stats — 2x2 grid #}
-
+
{{ stats.total }}
Total
-
+
{{ stats.aiCount }}
AI-involved
-
+
{{ stats.total - stats.aiCount }}
Human-only
-
+
{{ stats.percentage }}%
AI ratio
diff --git a/_includes/components/widgets/post-categories.njk b/_includes/components/widgets/post-categories.njk index 0d015d5..b85ba1a 100644 --- a/_includes/components/widgets/post-categories.njk +++ b/_includes/components/widgets/post-categories.njk @@ -5,12 +5,12 @@

Categories

{% if category is string %} - + {{ category }} {% else %} {% for cat in category %} - + {{ cat }} {% endfor %}