{% set defaultNames = [ "Mike Karthauser", "Tawny Bartlett", "Joe Howell", "Jon Hallett", "Michael Itkoff", "Mick Felton", "Duncan Davidson", "Adam Cuddihy", "Huw Davies", "Scott Euser", "Brian Hartwell", "Alan Hatch", "Holly Ross", "Josh Mitchell", "Brian Healy", "Chris Jarvis", "Daniel Easterbrook", "Anonymous", ] %} {% set names = names|default(defaultNames) %}

{{ title|default('Testimonials') }}

{% for testimonial in site.testimonials|filter(testimonial => names is null or testimonial.name in names) %}
{{ testimonial.text|markdown }}
{% endfor %}