<section id="content"> <div class="content-wrap"> <div class="container clearfix"> {# <div class="row col-mb-50"> <div class="col-sm-6 col-lg-4"> <div class="feature-box fbox-plain"> <div class="fbox-icon"> <a href="#"><i class="icon-realestate-my-house"></i></a> </div> <div class="fbox-content"> <h3 class="fw-normal">Lorem Ipsum</h3> <p>iaculis laoreet purus. In hac habitasse platea dictumst. Nunc vitae nisl sit amet urna molestie tempor potenti.</p> </div> </div> </div> <div class="col-sm-6 col-lg-4"> <div class="feature-box fbox-plain"> <div class="fbox-icon"> <a href="#"><i class="icon-realestate-hammer"></i></a> </div> <div class="fbox-content"> <h3 class="fw-normal">Lorem Ipsum</h3> <p>Donec cursus consectetur pretium. In pharetra ullamcorper neque vitae mattis. Aenean elementum imperdiet. </p> </div> </div> </div> <div class="col-sm-6 col-lg-4"> <div class="feature-box fbox-plain"> <div class="fbox-icon"> <a href="#"><i class="icon-realestate-garage"></i></a> </div> <div class="fbox-content"> <h3 class="fw-normal">Lorem Ipsum</h3> <p>Etiam nec orci felis. Pellentesque convallis quam nec urna dictum, in suscipit lorem varius, hasellus ante.</p> </div> </div> </div> <div class="col-sm-6 col-lg-4"> <div class="feature-box fbox-plain"> <div class="fbox-icon"> <a href="#"><i class="icon-realestate-rent"></i></a> </div> <div class="fbox-content"> <h3 class="fw-normal">Lorem Ipsum</h3> <p>Iaculis laoreet purus hac habitasse platea dictumst. Nunc vitae nisl sit amet urna molestie tempor massa. </p> </div> </div> </div> <div class="col-sm-6 col-lg-4"> <div class="feature-box fbox-plain"> <div class="fbox-icon"> <a href="#"><i class="icon-realestate-credit"></i></a> </div> <div class="fbox-content"> <h3 class="fw-normal">ELorem Ipsum</h3> <p>Display your Content attractively using Parallax Sections that have unlimited customizable areas.</p> </div> </div> </div> <div class="col-sm-6 col-lg-4"> <div class="feature-box fbox-plain"> <div class="fbox-icon"> <a href="#"><i class="icon-realestate-doc"></i></a> </div> <div class="fbox-content"> <h3 class="fw-normal">Lorem Ipsum</h3> <p>You have complete easy control on each & every element that provides endless customization possibilities.</p> </div> </div> </div> </div> <div class="line"></div> #} {% if(projetsAlaUne is not empty ) %} <div class="projet-a-la-une"> <div class="heading-block border-bottom-0 a-la-une-title"> <h3>{{ "projets-a-la-une"|trans }}</h3> </div> <a href="{{ path('mes_projets') }}" class="button button-small button-rounded button-border button-border-thin fw-medium m-0 all-project-btn"> {{ "Liste des projets >>"|trans }} </a> <div class="real-estate owl-carousel image-carousel carousel-widget bottommargin-sm" data-margin="10" data-nav="true" data-loop="true" data-pagi="false" data-items-xs="1" data-items-sm="1" data-items-md="2" data-items-lg="3" data-items-xl="3"> {% for projetAlaUne in projetsAlaUne %} <div class="oc-item"> <div class="real-estate-item"> <div class="real-estate-item-image"> <div class="badge bg-danger bg-color2"> {% if(app.request.locale == 'fr') %} {{ projetAlaUne.status ? projetAlaUne.status.nomAr : '' }} {% elseif(app.request.locale == 'ar') %} {{ projetAlaUne.status ? projetAlaUne.status.nomAr : '' }} {% endif %} </div> <a href="{{ path('detail_projet_front', {'id': projetAlaUne.id}) }}"> <img src="{{ asset('uploads/projet/' ~ projetAlaUne.imageAlaUne) }}" style="width: 365px; height: 243px;"> </a> <div class="real-estate-item-price">{{ projetAlaUne.budgetTnd }} <span> {% if(app.request.locale == 'fr') %} {{ projetAlaUne.nomFr }} {% elseif(app.request.locale == 'ar') %} {{ projetAlaUne.nomAr }} {% endif %} </span> </div> <div class="real-estate-item-info clearfix"> <a href="{{ path('detail_projet_front', {'id': projetAlaUne.id}) }}"> <i class="icon-line-stack-2"></i> </a> </div> </div> <div class="real-estate-item-desc"> {% if(app.request.locale == 'fr') %} <h5>{{ projetAlaUne.nomFr }}</h5> <span>{{ projetAlaUne.descriptionFr ? projetAlaUne.descriptionFr|slice(0, 40) ~ '...' : ''}}</span> {% elseif(app.request.locale == 'ar') %} <h5>{{ projetAlaUne.nomAr }}</h5> <span>{{ projetAlaUne.descriptionAr ? projetAlaUne.descriptionAr|slice(0, 40) ~ '...' : ''}}</span> {% endif %} <a href="{{ path('detail_projet_front', {'id': projetAlaUne.id}) }}" class="real-estate-item-link"> <i class="icon-info"></i> </a> <div class="real-estate-item-features fw-medium font-primary clearfix"> <div class="row g-0"> <div class="col-lg-4 p-0">{{ "date-du-projet:"|trans }}<span class="color"> {{ projetAlaUne.dateDebut ? projetAlaUne.dateDebut|date('d-m-Y') : '' }} {{ projetAlaUne.dateFin ? projetAlaUne.dateFin|date('d-m-Y') : '' }} </span> </div> <div class="col-lg-4 p-0">{{ "budget:"|trans }}<span class="color"> {{ projetAlaUne.budgetTnd }} {{ "TND"|trans }} </span> </div> <div class="col-lg-4 p-0">{{ "municipalite:"|trans}}<span class="color"> {% if(app.request.locale == 'fr') %} {% if(projetAlaUne.communes) %} {% for commune in projetAlaUne.communes %} {{ commune.nomFr }} - {% endfor %} {% endif %} {% elseif(app.request.locale == 'ar') %} {% if(projetAlaUne.communes) %} {% for commune in projetAlaUne.communes %} {{ commune.nomAr }} - {% endfor %} {% endif %} {% endif %} </span> </div> </div> </div> </div> </div> </div> {% endfor %} </div> </div> {% endif %} <div class="fancy-title title-center title-border"> <h3>{{ "Nos Partenaires"|trans }}</h3> </div> <div id="oc-images" class="owl-carousel image-carousel carousel-widget" data-items-xs="2" data-items-sm="3" data-items-lg="4" data-items-xl="5"> {% for partenaire in partenaires %} <div class="oc-item"> <a href="#"> <img src="{{ asset('uploads/logo/' ~ partenaire.logo) }}" alt="{{ partenaire.nomFr }}" style="width: 207px;height: 125px;"> </a> </div> {% endfor %} </div> </div> </div></section>