first commit

This commit is contained in:
maher
2026-05-16 17:26:43 +02:00
commit fcc6302ebb
406 changed files with 87325 additions and 0 deletions
@@ -0,0 +1,38 @@
{% extends 'base_frontend.html.twig' %}
{% block title %} Accueil {% endblock %}
{% block content %}
{% include 'frontend/basic/breadcrumb.html.twig' %}
<div class="body-content outer-top-vs" id="top-banner-and-menu">
<div class="wide-banners outer-bottom-vs">
<div class="row">
{% for annonce in annonces %}
<div class="col-md-3 col-sm-3">
<div class="wide-banner cnt-strip">
<a href="{{ path('frontend_annonce_detail', {id:annonce.getId()} ) }}">
<div class="image">
<img class="img-responsive" src="{{ asset('uploads/images/annonces/' ~ annonce.getImageSearch()) }}" alt="{{ annonce.getTitre() }}">
</div>
</a>
</div>
<br><br>
</div>
{% endfor %}
</div>
</div>
</div>
{% endblock %}