themes/BootstrapChildTheme/SyliusShopBundle/views/Product/Storyteller/_review.html.twig line 1

Open in your IDE?
  1. <h4 class="ui horizontal section divider header without-line mt-5 title">{{ 'app.ui.reviews' | trans }}</h4>
  2. <div class="owl-carousel reviews">
  3.     {% for i in 1..5  %}
  4.         <div class="item">
  5.             <p class="comment">{{ ('app.ui.product.storyteller.reviews.' ~ i) | trans }}</p>
  6.             <p class="name">{{ ('app.ui.product.storyteller.names.' ~ i) | trans }}</p>
  7.         </div>
  8.     {% endfor %}
  9. </div>