{% macro breadcrumbs(current) %}
{# TODO: Don't hide this on mobile #}
{# Always show 'Home' first #}
Home
{# For each ancestor, show separator and link #}
{% for ancestor in current.ancestors %}
{% if loop.first %}
{% continue %}
{% endif %}
›
{% set section = get_section(path=ancestor) %}
{{ section.title }}
{% endfor %}
{# For current, show separator and link #}
›{{ current.title }}