hegresphere/templates/announcement/list.html.twig

27 lines
682 B
Twig
Raw Normal View History

{% 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>
<style>
2024-11-28 16:58:42 +01:00
#map {
height: 500px; /* Ajuste la taille selon tes besoins */
margin-bottom: 20px;
}
</style>
<h1> Liste des annonces</h1>
2024-11-28 16:58:42 +01:00
<div id="map"></div> <!-- Conteneur pour la carte -->
{% 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>
{% endfor %}
2024-11-28 16:58:42 +01:00
{% endblock %}