{% extends 'base.html.twig' %} {% block stylesheets %} {% endblock %} {% if error is defined %} {% set introTitle = "error_intro_title"|trans|title %} {% set introDescription = "error_intro_description"|trans %} {% else %} {% set introTitle = "page_not_found_title"|trans|title %} {% set introDescription = "page_not_found_description"|trans %} {% endif %} {% set pageTitle = introTitle %} {% block content %} {% include "components/_intro.html.twig" with {options: { title: introTitle, description: introDescription, skip: false, breadcrumb: true, img: false, linkSection: ' ' }} %}
{{"did_you_look_for_these"|trans|title}}
{% set routerItems = [ { href: path('partners'), img: asset('img/partners/intro.jpg'), name: "partners"|trans|title, description: "partners_intro_description"|trans|capitalize }, { href: path('staff'), img: asset('img/staff/intro.jpg'), name: "our_staff"|trans|title, description: "staff_intro_description"|trans|capitalize }, { href: path('services'), img: asset('img/services/intro-mvp.png'), name: "services"|trans|title, description: "services_intro_description"|trans|capitalize } ] %} {% for routerItem in routerItems %}
{% include 'components/_text-container.html.twig' with {content: { title: routerItem.name, description: routerItem.description, link: routerItem.href }} %}
{% endfor %}
{% endblock %}