educ-bot/index.html

24 lines
791 B
HTML
Raw Normal View History

2020-03-31 18:59:36 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="main.css" />
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="main.js"></script>
</head>
<body>
<main id="educbot-status">
<p v-if="connection">Connecté !</p>
<p v-else="">Non connecté !</p>
<ul>
<li v-for="(value, key) in reactions">
2020-04-01 10:35:19 +00:00
<!--<img src="https://discordapp.com/assets/08c0a077780263f3df97613e58e71744.svg" width="30px" />
-->
2020-03-31 18:59:36 +00:00
{{value.prefix}}
<span v-for="person in value.people">{{person}}</span>
</li>
</ul>
</main>
</body>
</html>