src/Resources/views/Frontend/landing/bilan-expert.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_bilan_expert') }}"/>
  5.     {{ source('stubs/seo/robots_index_follow.html.twig') }}
  6. {% endblock %}
  7. {% block meta_title %}{{ 'seo.landing.bilanExpert.title'|trans({}, "seo") }}{% endblock %}
  8. {% block meta_desc %}{{ 'seo.landing.bilanExpert.desc'|trans({}, "seo") }}{% endblock %}
  9. {% block body_content %}
  10. <div class="bilan-expert">
  11.     <div class="landing-header">
  12.         <h1 class="titre05">
  13.             {{ 'frontend.landing.bilan-expert.header.title'|trans({}, 'landing') }}<sup>&reg;</sup>
  14.             <span>{{ 'frontend.landing.bilan-expert.header.subtitle'|trans({}, 'landing') }}</span>
  15.         </h1>
  16.     </div>
  17.     <div class="landing-content">
  18.         <div>
  19.             <div>
  20.                 <h2 class="titre01">{{ 'frontend.landing.bilan-expert.content.title'|trans({}, 'landing')|raw }}</h2>
  21.                 <p class="marginT20">{{ 'frontend.landing.bilan-expert.content.text01'|trans({}, 'landing')|raw }}</p>
  22.                 <p class="marginT20">{{ 'frontend.landing.bilan-expert.content.text02'|trans({}, 'landing')|raw }}</p>
  23.                 <p class="titre03 marginT20"><strong>{{ 'frontend.landing.bilan-expert.content.text03'|trans({}, 'landing')|raw }}</strong></p>
  24.             </div>
  25.             <div class="liste-avis grid-50 tab-p-100 m-100">
  26.                 <p>{{ 'frontend.landing.bilan-expert.content.block01.title'|trans({}, 'landing')|raw }}</p>
  27.                 <ul>
  28.                     <li><i class="icon-bilan-expert01"></i> {{ 'frontend.landing.bilan-expert.content.block01.item01'|trans({}, 'landing') }}</li>
  29.                     <li><i class="icon-bilan-expert02"></i> {{ 'frontend.landing.bilan-expert.content.block01.item02'|trans({}, 'landing') }}</li>
  30.                     <li><i class="icon-bilan-expert03"></i> {{ 'frontend.landing.bilan-expert.content.block01.item03'|trans({}, 'landing') }}</li>
  31.                 </ul>
  32.                 <div class="txtcenter"><img src="{{ asset('bundles/vpauto/frontend/images/bilan-expert02.jpg') }}" alt="bilan expert"/></div>
  33.             </div>
  34.             <div class="grid-50 tab-p-100 m-100">
  35.                 <div class="bg-img01">
  36.                     <div>{{ 'frontend.landing.bilan-expert.content.block02.title'|trans({}, 'landing')|raw }}</div>
  37.                 </div>
  38.                 <div class="txtcenter marginT10">
  39.                     <ul>
  40.                         <li><i class="icon-expertise04"></i><br> {{ 'frontend.landing.bilan-expert.content.block02.item01'|trans({}, 'landing')|raw }}</li>
  41.                         <li><i class="icon-expertise05"></i><br> {{ 'frontend.landing.bilan-expert.content.block02.item02'|trans({}, 'landing')|raw }}</li>
  42.                         <li><i class="icon-expertise06"></i><br> {{ 'frontend.landing.bilan-expert.content.block02.item03'|trans({}, 'landing')|raw }}</li>
  43.                     </ul>
  44.                     {# locale based : editorial content #}
  45.                     {% if 'fr' == app.request.locale %}
  46.                         <p>
  47.                             <a class="lien08 marginB10" href="{{ asset('/bundles/vpauto/pdf/Listedespointscontroles2016.pdf') }}">{{ 'frontend.landing.bilan-expert.content.block02.button01.label'|trans({}, 'landing') }}</a>
  48.                         </p>
  49.                     {% endif %}
  50.                     <p>
  51.                         <a class="lien09" href="{{ path('frontend_expertise') }}">{{ 'frontend.landing.bilan-expert.content.block02.button02.label'|trans({}, 'landing') }}</a>
  52.                     </p>
  53.                 </div>
  54.             </div>
  55.             <div>
  56.                 <h2 class="titre01">{{ 'frontend.landing.bilan-expert.bottom.title'|trans({}, 'landing')|raw }}</h2>
  57.                 <p class="marginT20">{{ 'frontend.landing.bilan-expert.bottom.text01'|trans({}, 'landing') }}</p>
  58.                 {% if not is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_PORTUGAL')) %}
  59.                     <p class="marginT20">{{ 'frontend.landing.bilan-expert.bottom.text02'|trans({}, 'landing')|raw }} </p>
  60.                     <p class="marginT20">{{ 'frontend.landing.bilan-expert.bottom.text03'|trans({}, 'landing')|raw }}</p>
  61.                 {% endif %}
  62.             </div>
  63.         </div>
  64.     </div>
  65. </div>
  66. <!--Footer -->
  67. {% include 'frontend/footer.html.twig' %}
  68. <!-- FIN Footer -->
  69. {% endblock body_content %}