{% comment %} Testimonial (04-interfaces.md section 4d): a quote card, the social-proof block. Structural, consumed via {% include %} (BR-BW-MKT ยง4d structural- include doctrine). Required context: quote. Optional context: author (str): the attribution name. role (str): the attribution line (e.g. "CTO, Acme Ltd"). avatar (str, an image URL): rendered with alt implied from author (never an unlabelled image, per the standing a11y non-goal). Omitted renders a text-only quote card, never a broken image. logo (safe string): a company logo, pre-rendered safe HTML. The caller owns escaping, matching _stat.html's sparkline convention. {% endcomment %} {% if quote %}

{{ quote }}

{% if author or role or avatar or logo %}
{% if avatar %}{{ author }}{% endif %}
{% if author %}{{ author }}{% endif %} {% if role %}{{ role }}{% endif %}
{% if logo %}{% endif %}
{% endif %}
{% endif %}