{# macros/a11y.html — reusable accessibility helpers #} {# Screen-reader-only text #} {% macro sr_only(text) %} {{ text }} {% endmacro %} {# Visually hidden but focusable skip link #} {% macro skip_link(target="#main-content", text="Skip to main content") %} {{ text }} {% endmacro %} {# Icon with accessible label — decorative by default #} {% macro icon(svg, label=None) %} {% if label %} {{ svg | safe }} {% else %} {% endif %} {% endmacro %} {# Loading spinner with live announcement #} {% macro loading_spinner(label="Loading", id=None) %}
{{ label }}
{% endmacro %}