{% extends 'base.html.twig' %} {% block title %}Customer Testimonials | {{ parent() }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

Customer Testimonials

{% for x in 1..total_testimonials %} {#{% for x in 1..20 %}#} {% if (x % 2) == 1 %}
{% endif %}
{% if (x % 4 == 0 or (x - 1) % 4 == 0) and not media_done %} {% if media_testimonial[media_count]['type'] == 'youtube' %}
{% else %} {% endif %} {% set media_count = media_count + 1 %} {% if media_count == media_testimonial|length %} {% set media_done = true %} {% endif %} {% else %}
{{ text_testimonials[text_count]['content']|raw }}
{% set text_count = text_count + 1 %} {% endif %}
{% if (x % 2 == 0) or (x == total_testimonials) %}
{% endif %} {% endfor %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}