{% extends 'base.html.twig' %}{% block title %} {% if singleBlog.metaTitle is empty %} {{ singleBlog.title }} {% else %} {{ singleBlog.metaTitle }} {% endif %}{% endblock %}{% block description %} {{ singleBlog.metaDescription }}{% endblock %} {% block meta_noindex %} {% if singleBlog.noIndex == true %} <meta name="robots" content="noindex, nofollow"> {% else %} <meta name="robots" content="index, follow"> {% endif %} {% endblock %}{% block body %}<style>.blog-single__left ul { padding: revert; margin-left: 20px; color: black;}.blog-single__left ul li { list-style: disc; color: black; margin-bottom: 10px;}.page-header__content h1 { font-size: 65px; line-height: 1.2em; font-weight: 700; text-transform: capitalize; margin-bottom: 40px;}@media only screen and (max-width: 767px) { .page-header--blog-single .page-header__content h1 { font-size: 40px; }}.blog-single__left a{ color: var(--secondary-colorEC) !important; transition: all 0.2s;}.blog-single__left a:hover{ font-weight: 600 !important}</style> <section class="hero-area"> <div class="container"> <div class="row"> <div class="col-12"> <div class="container-content d-flex flex-column justify-content-center align-items-center" data-aos="zoom-in"> <h1 class="main-title text-center"> {{ singleBlog.title }} </h1> </div> </div> </div> </div> </section> <!--Start Blog Single--> <section class="blog-single"> <div class="container"> <div class="row"> <!--Start Blog Single Left--> <div class="col-xl-8 col-lg-7"> <div class="blog-single__left"> <!--Start Single Blog Page Two--> <div class="blog-page-two__single style2"> <div class=""> <img class="img-fluid" src="/uploads/blogs/images/{{ singleBlog.imageName }}" alt="lagence expert"/> </div> </div> <!--End Single Blog Page Two--> {{ singleBlog.description|raw }} </div> </div> <!--End Blog Single Left--> <!--Start Sidebar--> <div class="col-xl-4 col-lg-5"> <div class="sidebar"> <!--End Single Sidebar--> <div class="sidebar__single"> <div class="contact-form"> <h2 class="title"> Votre audit est <span class="text-green text-underline"> offert ! <svg width="121" height="13" viewBox="0 0 121 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M2.2998 10.07C52.459 2.41211 78.8787 2.41211 118.7 2.41211" stroke="#7CD325" stroke-width="4" stroke-linecap="round"/> </svg> </span> </h2> {{ form_start(form_audit) }} {{ form_row(form_audit.page, { "value" : title }) }} {{ form_widget(form_audit) }} <button type="submit" class="btn regular primary"> <span> Envoyer votre demande <svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M5.88477 2.7334L10.2001 6.85261L5.88477 10.9718" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M10.1998 6.85266L1.7998 6.85266" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </svg> </span> </button> {{ form_end(form_audit) }} </div> </div> </div> </div> <!--End Sidebar--> </div> </div> </section> <!--End Blog Single-->{% endblock %}