--- layout: layouts/base.njk withSidebar: true --- {# Homepage content — two-tier fallback: #} {# 1. Plugin config (homepageConfig) — homepage builder controls everything #} {# 2. Default — show recent posts with default hero #} {# Default hero — only shown for Tier 2 (plugin controls its own hero) #} {% if not (homepageConfig and homepageConfig.sections) %}
{# Avatar #} {{ site.author.name }} {# Introduction #}

{{ site.author.name }}

{{ site.author.title }}

{% if site.author.bio %}

{{ site.author.bio }}

{% endif %} {% if site.description %}

{{ site.description }} Read more →

{% endif %} {# Social Links #}
{% endif %} {# --- Tier 1: Plugin-driven layout --- #} {% if homepageConfig and homepageConfig.sections %} {% include "components/homepage-builder.njk" %} {# --- Tier 2: Default — recent posts and explore links --- #} {% else %} {# Recent Posts #} {% if collections.posts and collections.posts.length %}

Recent Posts

{% for post in collections.posts | head(10) %} {% endfor %}
View all posts
{% 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

Blog

Articles, notes, and photos

CV

Experience and projects

About

Who I am and what I do

{% endif %} {# end two-tier fallback #}