{% extends 'base.html.twig' %}
{% trans_default_domain 'Testimony' %}
{% block body %}
{{ parent() }}
{% include 'components/breadcrumb.html.twig' with {pages: [{label: 'testimony'}]} %}
{% include 'components/intro.html.twig' with {title: 'intro.title'|trans, subTitle: 'intro.subTitle'|trans, description: 'intro.description'|trans, icon: 'scroll.svg'} %}
<div class="testimony-page">
<div class="testimony-list">
{% for testimony in testimonys %}
<div class="testimony-card">
{% include 'components/notation.html.twig' with {rating: testimony.rating} %}
<p class="text">{{ testimony.testimony }}.</p>
<p class="name">{{ testimony.firstName }} {{ testimony.name|first|upper }}.</p>
</div>
{% endfor %}
{{ include("components/pagination.html.twig", { pager: testimonys } ) }}
</div>
<div class="testimony-form">
<h2 class="title">{{ 'form.title'|trans }}</h2>
<p class="summary">{{ 'form.summary'|trans }}</p>
{% include 'forms/testimony.html.twig' %}
</div>
</div>
{% endblock %}