{% extends "furo/page.html" %} {% block body %} {# (a11y) Always provide the skip link as the very first thing in the body so that people who navigate the site with their keyboard don't need to tab through the entire site nav. https://pwbug.dev/344643289 #} Skip to main content {{ super() }} {% endblock body %} {% block content %} {% if pagename == 'index' %} {# Don't render breadcrumbs on the homepage. #} {% else %} {# The marker used between breadcrumbs. #} {%- set delimiter = ' /' %} {# Add breadcrumbs as the first thing in the "content" block. #}
{% endif %} {# Focus will be here after using the "skip to main content" link. #} {{ super() }} {% endblock content %}