2023-03-27 19:20:57 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2023-03-27 23:24:25 +02:00
|
|
|
<link rel="stylesheet" href="css/style.css">
|
2023-03-30 22:25:02 +02:00
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
|
|
|
integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI="
|
|
|
|
crossorigin=""/>
|
|
|
|
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
|
|
|
integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM="
|
|
|
|
crossorigin=""></script>
|
|
|
|
<script src="./js/leaftlet.js"></script>
|
|
|
|
<script src="./riot/maMap.riot" type="riot"></script>
|
2023-03-27 19:20:57 +02:00
|
|
|
<script src="./riot/suiviformation.riot" type="riot"></script>
|
|
|
|
<script src="./riot/choixformation.riot" type="riot"></script>
|
|
|
|
<script src="./riot/app.riot" type="riot"></script>
|
2023-03-29 16:57:34 +02:00
|
|
|
<script src="./riot/pourcentageForma.riot" type="riot"></script>
|
2023-03-27 23:24:25 +02:00
|
|
|
<script src="./riot/statistiqueFormation.riot" type="riot"></script>
|
2023-03-29 16:57:34 +02:00
|
|
|
<script src="./riot/tableuFormation.riot" type="riot"></script>
|
2023-03-30 18:02:37 +02:00
|
|
|
<script src="./riot/modaleEcole.riot" type="riot"></script>
|
2023-03-30 22:25:02 +02:00
|
|
|
<script src="./js/riot+compiler.min.js"></script>
|
2023-03-27 19:20:57 +02:00
|
|
|
<title>S4WEB</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<app></app>
|
|
|
|
<script>
|
|
|
|
|
2023-03-29 11:50:35 +02:00
|
|
|
localStorage.clear()
|
|
|
|
|
|
|
|
riot.compile().then(() => {
|
|
|
|
riot.mount('app', {})
|
|
|
|
})
|
2023-03-27 19:20:57 +02:00
|
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|