aboutsummaryrefslogtreecommitdiff
path: root/index.html
blob: 5ac86c8d14a5aafee642a970657b4f494e0844a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Match Up!</title>
    <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
    <link rel="stylesheet" href="index.css">
  </head>
  <body>
    <main class="container">
        <nav>
            <ul>
                <li><strong>Match Up</strong></li>
            </ul>
            <ul>
                <li><a href="/players">Players</a></li>
                <li><a href="#">Guests</a></li>
                <li><a href="#">Admin</a></li>
            </ul>
        </nav>
        <div>
            <h2>Regulars</h2>
            <div id="player_list" class="button-grid"></div>
        </div>
    </main>
    <script src="player.mjs" type="module"></script>
    <script src="index.js" type="module"></script>
  </body>
</html>