2025-05-22 19:13:43 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> {% block title %} Welcome! {% endblock %} </title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
<!-- CSS Bootstrap -->
2025-05-27 12:17:46 +02:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
2025-05-22 19:13:43 +02:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<!-- JavaScript Bootstrap avec Popper.js -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
2025-05-27 11:18:29 +02:00
<style>
.body-landing {
background-color:rgb(255, 255, 255);
min-height: 50vh;
}
table td {
padding: 1rem;
}
table, thead, tbody, tr {
width: 100%;
}
2025-05-27 12:17:46 +02:00
{ # table tr:nth-child(odd) {
2025-05-27 11:18:29 +02:00
background-color:rgb(235, 235, 235);
}
table tr:nth-child(even) {
background-color: #f8f9fa;
2025-05-27 12:17:46 +02:00
} #}
2025-05-27 11:18:29 +02:00
</style>
2025-05-22 19:13:43 +02:00
{% block stylesheets %}
2025-05-26 23:51:46 +02:00
2025-05-22 19:13:43 +02:00
{{ encore_entry_link_tags ( 'app' ) }}
{% endblock %}
</head>
<body>
2025-05-26 11:32:53 +02:00
<header class="main-header">
<div class="container">
2025-05-26 23:51:46 +02:00
2025-05-26 11:32:53 +02:00
<div class="row">
<div class="col-12">
<a href=" {{ path ( 'app_public_index' ) }} ">
<h1>OpenStreetMap Mon Commerce</h1>
</a>
</div>
</div>
2025-05-26 23:51:46 +02:00
{% for label , messages in app .flashes %}
{% for message in messages %}
<div class="alert alert- {{ label }} alert-dismissible fade show" role="alert">
{{ message }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
{% endfor %}
<div class="row">
<div class="col-12">
2025-05-27 12:17:46 +02:00
{% include 'public/nav.html.twig' %}
2025-05-26 23:51:46 +02:00
</div>
</div>
2025-05-26 11:32:53 +02:00
</div>
</header>
<div class="body-landing">
2025-05-22 19:13:43 +02:00
{% block body %} {% endblock %}
2025-05-26 11:32:53 +02:00
</div>
<footer class="main-footer">
<div class="container">
<div class="row">
<div class="col-12">
2025-05-27 12:17:46 +02:00
{% include 'public/nav.html.twig' %}
</div>
</div>
<div class="row">
<div class="col-12">
2025-05-26 11:32:53 +02:00
<p>OpenStreetMap Mon Commerce</p>
2025-05-26 23:51:46 +02:00
<p>Licence AGPLv3+,
fait par Tykayn de
<a href="https://www.cipherbliss.com">CipherBliss EI</a>, membre de la fédération des professionels d'OpenStreetMap, Sources des données : <a href="https://www.openstreetmap.org/">OpenStreetMap</a>.
2025-05-26 11:32:53 +02:00
<br> <a href="https://www.openstreetmap.org/copyright">OpenStreetMap France</a></p>
</div>
</div>
</div>
</footer>
2025-05-22 19:13:43 +02:00
</body>
2025-05-26 11:55:44 +02:00
{% block javascripts %}
{{ encore_entry_script_tags ( 'app' ) }}
{% endblock %}
2025-05-22 19:13:43 +02:00
</html>