{% set limit = limit ?? 10 %} {% set offset = offset ?? 0 %} {% set testimonials = site.testimonials %} {% if tag is not null %} {% set testimonials = testimonials|filter(testimonial => tag in testimonial.tags) %} {% endif %} {% if limit > 0 %} {% set testimonials = testimonials|slice(offset, limit) %} {% endif %}

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

{% for testimonial in testimonials %}
{{ testimonial.text|markdown }}
{% endfor %}