src/Resources/views/Frontend/landing/expertise.html.twig line 84

Open in your IDE?
  1. {% extends 'frontend/frontend.html.twig' %}
  2. {% block meta_robot %}
  3.     {{ parent() }}
  4.     <link rel="canonical" href="{{ url('frontend_expertise') }}"/>
  5.     {{ source('stubs/seo/robots_index_follow.html.twig') }}
  6. {% endblock %}
  7. {% block meta_title %}{{ 'seo.landing.expertise.title'|trans({}, "seo") }}{% endblock %}
  8. {% block meta_desc %}{{ 'seo.landing.expertise.desc'|trans({}, "seo") }}{% endblock %}
  9. {% block body_content %}
  10. <div class="expertise">
  11.     <div class="landing-header">
  12.         <h1 class="titre05">
  13.             {{ 'frontend.landing.expertise.header.title'|trans({}, 'landing') }}
  14.             <span>{{ 'frontend.landing.expertise.header.subtitle'|trans({}, 'landing') }}</span>
  15.         </h1>
  16.     </div>
  17.     <div class="landing-content">
  18.         <div>
  19.             <div>
  20.                 <h2 class="titre01">{{ 'frontend.landing.expertise.content.title01'|trans({}, 'landing')|raw }}</h2>
  21.                 <p class="marginT20">{{ 'frontend.landing.expertise.content.desc01'|trans({}, 'landing')|raw }}</p>
  22.             </div>
  23.             <div class="grid-container block-bg">
  24.                 <div class="grid-33 tab-l-100 tab-p-100 m-100">
  25.                     <div>
  26.                         <p><i class="icon-expertise04"></i></p>
  27.                         <h2><strong>{{ 'frontend.landing.expertise.content.block01.title'|trans({}, 'landing') }}</strong></h2>
  28.                         <ul>
  29.                             <li>- {{ 'frontend.landing.expertise.content.block01.text01'|trans({}, 'landing')|raw }}</li>
  30.                             <li>- {{ 'frontend.landing.expertise.content.block01.text02'|trans({}, 'landing')|raw }}</li>
  31.                             <li>- {{ 'frontend.landing.expertise.content.block01.text03'|trans({}, 'landing')|raw }}</li>
  32.                         </ul>
  33.                     </div>
  34.                 </div>
  35.                 <div class="grid-33 tab-l-100 tab-p-100 m-100">
  36.                     <div>
  37.                         <p><i class="icon-expertise05"></i></p>
  38.                         <h2><strong>{{ 'frontend.landing.expertise.content.block02.title'|trans({}, 'landing') }}</strong></h2>
  39.                         <ul>
  40.                             <li>- {{ 'frontend.landing.expertise.content.block02.text01'|trans({}, 'landing')|raw }}</li>
  41.                             <li>- {{ 'frontend.landing.expertise.content.block02.text02'|trans({}, 'landing')|raw }}</li>
  42.                             <li>- {{ 'frontend.landing.expertise.content.block02.text03'|trans({}, 'landing')|raw }}</li>
  43.                         </ul>
  44.                     </div>
  45.                 </div>
  46.                 <div class="grid-33 tab-l-100 tab-p-100 m-100">
  47.                     <div>
  48.                         <p><i class="icon-expertise06"></i></p>
  49.                         <h2><strong>{{ 'frontend.landing.expertise.content.block03.title'|trans({}, 'landing') }}</strong></h2>
  50.                         <ul>
  51.                             <li>- {{ 'frontend.landing.expertise.content.block03.text01'|trans({}, 'landing')|raw }}</li>
  52.                             <li>- {{ 'frontend.landing.expertise.content.block03.text02'|trans({}, 'landing')|raw }}</li>
  53.                             <li>- {{ 'frontend.landing.expertise.content.block03.text03'|trans({}, 'landing')|raw }}</li>
  54.                         </ul>
  55.                     </div>
  56.                 </div>
  57.             </div>
  58.             <div class="grid-container marginT60">
  59.                 <h2 class="titre04"><strong>{{ 'frontend.landing.expertise.content.title02'|trans({}, 'landing') }}</strong></h2>
  60.                 <p class="marginT20">{{ 'frontend.landing.expertise.content.desc02'|trans({}, 'landing') }}</p>
  61.                 {% if not is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_PORTUGAL')) %}
  62.                     <p>{{ 'frontend.landing.expertise.content.desc03'|trans({}, 'landing') }}</p>
  63.                 {% endif %}
  64.                 <p class="marginT20">
  65.                     <a class="lien09 marginR60 marginB20" href="{{ path('frontend_bilan_expert') }}">{{ 'frontend.landing.expertise.content.button01.label'|trans({}, 'landing') }}</a>
  66.                     {% if not is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_PORTUGAL')) %}
  67.                        <a class="lien08" href="http://blog.vpauto.fr/lessentiel-pour-comprendre-un-controle-technique" target="_blank">{{ 'frontend.landing.expertise.content.button02.label'|trans({}, 'landing') }}</a>
  68.                     {% endif %}
  69.                 </p>
  70.             </div>
  71.         </div>
  72.         <div class="bg-img02 tab-p-hide m-hide">
  73.             <div>{{ 'frontend.landing.expertise.content.block04.title'|trans({}, 'landing')|raw }}</div>
  74.         </div>
  75.     </div>
  76. </div>
  77. <!--Footer -->
  78. {% include 'frontend/footer.html.twig' %}
  79. <!-- FIN Footer -->
  80. {% endblock body_content %}