src/Resources/views/Frontend/landing/company.html.twig line 1

Open in your IDE?
  1. {% extends 'frontend/frontend.html.twig' %}
  2. {% block meta_robot %}
  3.     {{ parent() }}
  4.     <link rel="canonical" href="{{ url('frontend_company') }}"/>
  5.     {{ source('stubs/seo/robots_index_follow.html.twig') }}
  6. {% endblock %}
  7. {% block meta_title %}{{ 'seo.landing.company.title'|trans({}, "seo") }}{% endblock %}
  8. {% block meta_desc %}{{ 'seo.landing.company.desc'|trans({}, "seo") }}{% endblock %}
  9. {% block body_content %}
  10. <div class="entreprise">
  11.     <div class="landing-header">
  12.         <h1 class="titre05">
  13.             {{ 'frontend.landing.company.header.title'|trans({}, 'landing') }}
  14.             <span>{{ 'frontend.landing.company.header.subtitle'|trans({}, 'landing') }}</span>
  15.         </h1>
  16.     </div>
  17.     <div class="landing-content">
  18.         <div class="grid-50 tab-p-100 m-100">
  19.             <h2 class="titre01">{{ 'frontend.landing.company.content.item01.title'|trans({}, 'landing')|raw }}</h2>
  20.             <p>{{ 'frontend.landing.company.content.item01.desc01'|trans({}, 'landing') }}</p>
  21.             <p class="marginT20">{{ 'frontend.landing.company.content.item01.desc02'|trans({}, 'landing') }}</p>
  22.             <a href="{{ path('frontend_organization') }}" class="lien09 marginT10">{{ 'frontend.landing.company.content.item01.button.label'|trans({}, 'landing') }}</a>
  23.             {% if is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_PORTUGAL')) %}
  24.                 <h2 class="titre01 marginT40">{{ 'frontend.landing.company.content.item05.title'|trans({}, 'landing') }}</h2>
  25.                 <p>{{ 'frontend.landing.company.content.item05.desc01'|trans({}, 'landing') }}</p>
  26.                 <a href="{{ path('frontend_salesrooms') }}" class="lien09 marginT10">{{ 'frontend.landing.company.content.item05.button.label'|trans({}, 'landing') }}</a>
  27.             {% endif %}
  28.             <h2 class="titre01 marginT40">{{ 'frontend.landing.company.content.item02.title'|trans({}, 'landing') }}</h2>
  29.             <ul>
  30.                 <li>- {{ 'frontend.landing.company.content.item02.list.text01'|trans({}, 'landing') }}</li>
  31.                 <li>- {{ 'frontend.landing.company.content.item02.list.text02'|trans({}, 'landing') }}</li>
  32.                 <li>- {{ 'frontend.landing.company.content.item02.list.text03'|trans({}, 'landing') }}</li>
  33.                 <li>- {{ 'frontend.landing.company.content.item02.list.text04'|trans({}, 'landing') }}</li>
  34.                 {% if is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_PORTUGAL')) %}
  35.                     <li>- {{ 'frontend.landing.company.content.item02.list.text05'|trans({}, 'landing') }}</li>
  36.                 {% endif %}
  37.             </ul>
  38.             <a href="{{ path('frontend_engagements') }}" class="lien09 marginT10">{{ 'frontend.landing.company.content.item02.button.label'|trans({}, 'landing') }}</a>
  39.             {% if is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_PORTUGAL')) %}
  40.                 <h2 class="titre01 marginT40">{{ 'frontend.landing.company.content.item06.title'|trans({}, 'landing') }}</h2>
  41.                 <p>{{ 'frontend.landing.company.content.item06.desc01'|trans({}, 'landing')|raw }}</p>
  42.             {% else %}
  43.                 <h2 class="titre01 marginT40">{{ 'frontend.landing.company.content.item03.title'|trans({}, 'landing') }}</h2>
  44.                 <ul>
  45.                     <li>- {{ 'frontend.landing.company.content.item03.list.text01'|trans({}, 'landing') }}</li>
  46.                     <li>- {{ 'frontend.landing.company.content.item03.list.text02'|trans({}, 'landing') }}</li>
  47.                     <li>- {{ 'frontend.landing.company.content.item03.list.text03'|trans({}, 'landing') }}</li>
  48.                     <li>- {{ 'frontend.landing.company.content.item03.list.text04'|trans({}, 'landing') }}</li>
  49.                 </ul>
  50.                 <a href="{{ path('frontend_salesrooms') }}" class="lien09 marginT10">{{ 'frontend.landing.company.content.item03.button.label'|trans({}, 'landing') }}</a>
  51.             {% endif %}
  52.             {{ render(controller('App\\Controller\\Frontend\\VehicleController:salesCounterAction')) }}
  53.             {{ 'frontend.landing.company.content.item04.list.text01'|trans({}, 'landing') }}
  54.         </div>
  55.         <div class="bg-img01 grid-50 tab-p-100 m-hide">&nbsp;</div>
  56.         <div class="nosvaleurs grid-50 tab-p-100 m-hide">
  57.             <h2 class="titre01">{{ 'frontend.landing.company.content.block01.title'|trans({}, 'landing')|raw }}</h2>
  58.         </div>
  59.     </div>
  60. </div>
  61. <!--Footer -->
  62. {% include 'frontend/footer.html.twig' %}
  63. <!-- FIN Footer -->
  64. {% endblock body_content %}