2025-10-31 20:55:13 -03:00
|
|
|
<!DOCTYPE html>
|
2025-10-26 00:02:19 -03:00
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>General Bots</title>
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<app></app>
|
|
|
|
|
|
|
|
|
|
<script src="https://unpkg.com/riot@10/riot+compiler.min.js"></script>
|
2025-10-26 08:07:14 -03:00
|
|
|
<script src="app.html" type="riot"></script>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
riot.compile().then(() => {
|
|
|
|
|
riot.mount('app');
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2025-10-26 00:02:19 -03:00
|
|
|
</body>
|
|
|
|
|
|
2025-10-26 08:07:14 -03:00
|
|
|
</html>
|