2026-03-17 17:34:34 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2026-03-18 12:45:44 +01:00
|
|
|
<title>Parcoursup Riot</title>
|
|
|
|
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/riot@9/riot+compiler.min.js"></script>
|
|
|
|
|
<script type="module">
|
|
|
|
|
import "./api.js"
|
|
|
|
|
import "./formation.js"
|
|
|
|
|
</script>
|
2026-03-17 17:34:34 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2026-03-18 12:45:44 +01:00
|
|
|
<app></app>
|
2026-03-17 17:34:34 +01:00
|
|
|
|
2026-03-18 12:45:44 +01:00
|
|
|
<script src="./app.riot" type="riot"></script>
|
2026-03-17 17:34:34 +01:00
|
|
|
|
2026-03-18 12:45:44 +01:00
|
|
|
<script>
|
|
|
|
|
riot.compile().then(() => {
|
|
|
|
|
riot.mount('app')
|
|
|
|
|
})
|
|
|
|
|
</script>
|
2026-03-17 17:34:34 +01:00
|
|
|
</body>
|
|
|
|
|
</html>
|