templates/home/boutique-home.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Bienvenue {% endblock %}
  3. {% block body %}
  4. Accueil
  5. {{ boutique.nom}}
  • {% if boutique.logo != null %}
  • {% else %}
  • {% endif %}
  • Non certifié
  • {{boutique.nom}}

  • {% if pubImages["Z-R-IMG-PD"] is defined %}
  • {% else %}
  • {% endif %}
  • type="text"
  • name="searchText"
  • class="form-control me-2"
  • placeholder="Rechercher dans cette boutique ou agence..."
  • required
  • />
  • type="submit"
  • class="btn"
  • style="background-color: #006266; color: #FFFFFF;"
  • >
  • {% if immeubles is not empty %}
  • Récentes publications d'immeubles

  • {% for immeuble in immeubles %}
  • {% if immeuble.typeoperation == "LOCATION" %}
  • A LOUER
  • {% else %}
  • A VENDRE
  • {% endif %}
  • {% if immeuble.photo is defined and immeuble.photo == 'default-immo.jpg' %}
  • {% else %}
  • {% endif %}
  • {{ immeuble.libelle|length > 50 ? immeuble.libelle|slice(0, 50) ~ '...' : immeuble.libelle }}
  • {{ immeuble.ville.nom }}
  • {% if immeuble.quartier is not null %}
  • - {{ immeuble.quartier.nom }}
  • {% endif %}
  • {% if immeuble.prix > 0%}
  • {{ immeuble.prix|number_format(0,'.',' ') }} FCFA
  • {% else %}
  • Prix à la demande
  • {% endif %}
  • Publié le {{ immeuble.pubDate| date('d/m/Y h:i') }}
  • {% endfor %}
  • {% if immeubles is not null %}
  • {{ knp_pagination_render(immeubles, 'paginator.html.twig') }}
  • {% endif %}
  • {% endif %}
  • {% if articles is not empty %}
  • Récentes articles

  • {% for article in articles %}
  • {% if article.ispromo == true %}
  • PROMO
  • {% endif %}
  • {% if article.IsSolde == true %}
  • Jusqu'à -{{ article.soldePourcentage}}%
  • {% endif %}
  • {% if article.imageprincipale is not defined or article.imageprincipale == 'default-article.jpg' %}
  • {% else %}
  • product image
  • {% endif %}
  • {{ article.libelle|length > 50 ? article.libelle|slice(0, 50) ~ '...' : article.libelle }}
  • {% if article.ispromo==true %}
  • {% if article.isNoprice == true %}
  • Prix à la demande
  • {% else %}
  • {{ article.prixpromo|number_format(0,'.',' ') }} FCFA
  • {{ article.prix|number_format(0,'.',' ') }} FCFA
  • {% endif %}
  • {% elseif article.IsSolde == true %}
  • {% if article.isNoprice == true %}
  • Prix à la demande
  • {% else %}
  • {{ article.prix|number_format(0,'.',' ') }} FCFA
  • {% endif %}
  • {% else %}
  • {% if article.prix > 0%}
  • {{ article.prix|number_format(0,'.',' ') }} FCFA
  • {% else %}
  • Prix à la demande
  • {% endif %}
  • {% endif %}
  • Publié le {{ article.pubDate| date('d/m/Y h:i') }}
  • {% endfor %}
  • {{ knp_pagination_render(articles, 'paginator.html.twig') }}
  • {% endif %}
  • {% if vehicules is not empty %}
  • Les Récentes publications de vehicules

  • {% for v in vehicules %}
  • {% if v.typeoperation == "LOCATION" %}
  • A LOUER
  • {% else %}
  • A VENDRE
  • {% endif %}
  • {{ v.libelle|length > 50 ? v.libelle|slice(0, 50) ~ '...' : v.libelle }}
  • {% if v.prix > 0%}
  • {{ v.prix|number_format(0,'.',' ') }} FCFA
  • {% else %}
  • Prix à la demande
  • {% endif %}
  • Publié le {{ v.pubDate| date('d/m/Y h:i') }}
  • {% endfor %}
  • {% endif %}
  • {% if services is not empty %}
  • Les Récentes publications de services

  • {% for s in services %}
  • {{ s.libelle|length > 50 ? s.libelle|slice(0, 50) ~ '...' : s.libelle }}
  • {{ s.ville}}
  • {% if s.quartier is not null %}
  • - {{ s.quartier }}
  • {% endif %}
  • {% if s.price > 0%}
  • {{ s.price|number_format(0,'.',' ') }} FCFA
  • {% else %}
  • Prix à la demande
  • {% endif %}
  • Publié le {{ s.pubAt| date('d/m/Y h:i') }}

  • {% endfor %}
  • {% if services is not null %}
  • {{ knp_pagination_render(services, 'paginator.html.twig') }}
  • {% endif %}
  • {% endif%}
  • {% endblock %}