educ-bot/index.html
Adrian Amaglio a72a1dbaeb 💄 some improvements
2020-04-02 18:01:29 +02:00

25 lines
822 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>
<p>{{message}}</p>
<ul>
<li v-for="(value, key) in reactions">
<!--<img src="https://discordapp.com/assets/08c0a077780263f3df97613e58e71744.svg" width="30px" />
-->
{{value.prefix}}
<span v-for="person in value.people">{{person}}</span>
</li>
</ul>
</main>
</body>
</html>