{# AI Usage Section — full-width AI transparency stats and contribution graph #} {% set sectionConfig = section.config or {} %} {% set sectionTitle = sectionConfig.title or "AI Transparency" %} {% set stats = collections.posts | aiStats %} {% set aiPostsList = collections.posts | aiPosts %} {% if stats and stats.total > 0 %}

{{ sectionTitle }}

{# Stats grid — 4 columns #}
{{ stats.total }}
Total posts
{{ stats.aiCount }}
AI-involved
{{ stats.total - stats.aiCount }}
Human-only
{{ stats.percentage }}%
AI ratio
{# Level breakdown #}
Level 0 (None): {{ stats.byLevel[0] }} Level 1 (Editorial): {{ stats.byLevel[1] }} Level 2 (Co-drafted): {{ stats.byLevel[2] }} Level 3 (AI-generated): {{ stats.byLevel[3] }}
{# Post graph — AI-involved posts highlighted #} {% if aiPostsList and aiPostsList.length %}

AI-Involved Posts Over Time

Highlighted days had posts with AI involvement (level 1+). Empty boxes represent days with no AI-involved posts.

{% set graphLimit = sectionConfig.limit or 1 %} {% postGraph aiPostsList, { prefix: "ai-section", limit: graphLimit, boxColorDark: "#44403c", highlightColorLight: "#d97706", highlightColorDark: "#fbbf24" } %} {% endif %}
View full AI transparency report
{% endif %}