2024-11-11 16:00:51 +01:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block title %}Bienvenue sur Hegreshpere{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2024-11-28 16:58:42 +01:00
|
|
|
<script src="{{ asset('js/map.js') }}"></script>
|
2024-11-11 16:00:51 +01:00
|
|
|
<style>
|
2024-11-28 16:58:42 +01:00
|
|
|
#map {
|
|
|
|
height: 500px; /* Ajuste la taille selon tes besoins */
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2024-11-11 16:00:51 +01:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<h1> Liste des annonces</h1>
|
2024-11-28 16:58:42 +01:00
|
|
|
|
|
|
|
<div id="map"></div> <!-- Conteneur pour la carte -->
|
|
|
|
|
2024-11-11 16:00:51 +01:00
|
|
|
{% for ann in announcements %}
|
|
|
|
<h2> {{ ann.title }} </h2>
|
|
|
|
<h3> {{ ann.company.name }} </h3>
|
|
|
|
<p> {{ ann.description }} </p>
|
2024-11-28 14:40:29 +01:00
|
|
|
------------------------------
|
2024-11-11 16:00:51 +01:00
|
|
|
|
2024-11-28 17:56:10 +01:00
|
|
|
<p> {{ ann.creationDate|date("d-m-y") }} </p>
|
2024-11-11 16:00:51 +01:00
|
|
|
{% endfor %}
|
2024-11-28 16:58:42 +01:00
|
|
|
{% endblock %}
|