{% comment %} Testimonial Scroll Component A scrolling masonry-style testimonial display inspired by modern SaaS landing pages. Uses the generic infinite-scroll component for animation. Usage: {% include themes/classy/frontend/components/testimonial-scroll.html testimonials=page.resolved.testimonials %} Required data structure: testimonials: superheadline: icon: "megaphone" text: "Testimonials" headline: "What people are saying" headline_accent: "about us" subheadline: "Hear from real customers" items: - quote: "..." author: "Name" role: "Title" company: "Company" initial: "N" handle: "@username" (optional) {% endcomment %}
{% iftruthy include.testimonials.superheadline.text %} {% iftruthy include.testimonials.superheadline.icon %} {% uj_icon include.testimonials.superheadline.icon, "me-1" %} {% endiftruthy %} {{ include.testimonials.superheadline.text }} {% endiftruthy %}

{{ include.testimonials.headline }} {% iftruthy include.testimonials.headline_accent %} {{ include.testimonials.headline_accent }} {% endiftruthy %}

{% iftruthy include.testimonials.subheadline %}

{{ include.testimonials.subheadline }}

{% endiftruthy %}
{% if include.testimonials.items %}
{% for testimonial in include.testimonials.items %}
{{ testimonial.initial }}
{{ testimonial.author }}
{% iftruthy testimonial.handle %} {{ testimonial.handle }} {% endiftruthy %} {% iffalsy testimonial.handle %} {{ testimonial.role }}{% iftruthy testimonial.company %} at {{ testimonial.company }}{% endiftruthy %} {% endiffalsy %}

{{ testimonial.quote }}

{% endfor %}
{% endif %}