Files
fullhouse/client/index.html

25 lines
772 B
HTML
Raw Normal View History

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>fullhouse</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div id="app">
<header>
<a href="#/" class="brand">&gt; <span class="accent">fullhouse</span></a>
<p class="tagline">music bingo from a real playlist</p>
</header>
<main id="view"></main>
<footer>
<p class="muted">
based on <a href="https://github.com/f8al/bingo-bango" target="_blank" rel="noopener">bingo-bango</a> by f8al (MIT) — reworked with live sessions, host mode, and cover-art squares
</p>
</footer>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>