templates/website/page/services.html.twig line 1
{% extends '@web/base.html.twig' %}{% block body %}<section class="section-services"><div class="custom-container"><div class="wrapper-navigation"><h1>{{ 'Services'|trans }}</h1><ul><li><a href="{{ path('page_index') }}">{{ 'Home'|trans }}</a></li><li><span>{{ 'Services'|trans }}</span></li></ul></div><div class="wrapper-items">{% for item in services %}<div class="wrapper-item"><a href="#" class="wrapper-image"><img src="{{ item.image }}" alt=""></a><div class="wrapper-text"><a href="{{ path('page_service',{'id':item.id}) }}">{{ item.title }}</a><p>{{ item.shortDescription }}</p><a href="{{ path('page_service',{'id':item.id}) }}">Read More</a></div></div>{% endfor %}</div></div></section>{% endblock %}