botserver/web/app/index.html

24 lines
507 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>General Bots</title>
</head>
<body>
<link rel="stylesheet" href="public/output.css" />
<link rel="stylesheet" href="client-nav.css" />
<app></app>
<script src="app.html" type="riot"></script>
<script src="https://unpkg.com/riot@10/riot+compiler.min.js"></script>
<script>
riot.compile().then(() => {
riot.mount('app', {
title: 'General Bots',
})
})
</script>
</body>
</html>