{% extends('frontend/layout/base.html.twig') %} {% set title = 'Home' %} {% block content %} {% for prd in head %} {{ prd.category.name }} {{ prd.name }} {% set prddname = ((prd.description | raw | nl2br) | striptags('')) %} {{ (prddname |length > 200 ? prddname|slice(0, 200) ~ ('...Read More\n' | nl2br) : (prddname ~ '')) | raw }} View Product {% endfor %} Our Products {% for product in products %} {# @var product \App\Entity\Products #} {{ product.category.name }} {{ product.name }} {% if product.price != null %} ${{ product.price }} {% endif %} {% endfor %} Our Suppliers {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {% if news | length != 0 %} News View all {% for new in news %} {# @var new \App\Entity\News #} {{ new.title }} {{ new.date | totimeago }} {% endfor %} {% endif %} {% endblock %}
{{ (prddname |length > 200 ? prddname|slice(0, 200) ~ ('...Read More\n' | nl2br) : (prddname ~ '')) | raw }} View Product