๐ Recent Posts
{# Fallback to searchIndex like homepage if posts collection is empty #}
{% set recent = collections.posts | default([]) %}
{% if (recent | length) == 0 %}
{% set recent = collections.searchIndex | default([]) %}
{% endif %}
{% if recent | length > 0 %}
{% else %}
No posts yet. Start writing!
{% endif %}