botserver/web/app/index.html

21 lines
352 B
HTML

<!DOCTYPE html>
<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>
<script src="app.html" type="riot"></script>
<script>
riot.compile().then(() => {
riot.mount('app');
});
</script>
</body>
</html>