Files
web_2025/R4.01_R4.A.10/td_tp/tp5/ex1/index.html
2026-02-20 12:04:02 +01:00

29 lines
641 B
HTML

<!doctype html>
<html>
<head>
<title>Riot todo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="todo.css">
<script src="todo.riot" type="riot"></script>
<script src="https://unpkg.com/riot@10.1.2/riot+compiler.min.js"></script>
</head>
<body>
<todo />
</body>
<script>
riot.compile().then(() => {
riot.mount('todo', {
title: 'I want to behave!',
todos: [
{ title: 'Avoid excessive caffeine', done: false ,id : 0},
{ title: 'Be less provocative', done: true , id:1},
{ title: 'Be nice to people', done: true, id:2}
]
})
})
</script>
</html>