{# Overrides furo's page.html for two things, to bring this site closer to the look of the Digital World JS SDK's Starlight-based doc site (sdks/finance/digital-world-js-sdk): 1. A full-width top bar (site title + centered search + theme toggle), matching Starlight's header, in place of Furo's default sidebar-embedded brand/search. Only shown at the desktop breakpoint (63em) where Furo's sidebar is a persistent column rather than a slide-out drawer — below that, Furo's own `mobile-header` (with the same brand/search/toggle) already covers small screens, so we leave it alone. 2. Drop the "Made with Sphinx and @pradyunsg's Furo" attribution line from the footer (kept: copyright notice and prev/next page navigation). #} {% extends "!page.html" %} {% block body %}
← Docs Hub {{ docstitle if docstitle else project }}
{{ super() }} {% endblock body %} {% block footer %}
{%- if show_copyright %} {%- endif %} {%- if last_updated -%}
{% trans last_updated=last_updated|e -%} Last updated on {{ last_updated }} {%- endtrans -%}
{%- endif %}
{% if theme_footer_icons -%}
{% for icon_dict in theme_footer_icons -%} {{- icon_dict.html -}} {% endfor %}
{%- endif %}
{% endblock footer %}