|
123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
-
- <html lang="en">
- <head>
- <meta name="theme-color" content="#20c420" />
- <meta name="author" content="Exmods community" />
- <meta name="keywords" content="exmods,gamecraft,modding,mod" />
- <meta name="og:type" content="website" />
- <meta name="og:title" content="Exmods" />
- <meta name="og:description" content="Gamecraft modding website" />
- <meta name="description" content="Gamecraft modding website" />
- <meta name="og:image" content="../static/favicon.png" />
- <meta name="og:url" content="https://www.exmods.org" />
- <link rel="icon" href="../static/favicon.png" type="image/x-icon"/>
- <link rel="shortcut icon" href="../static/favicon.png" type="image/x-icon"/>
- <link rel="stylesheet" href="../static/style.css" type="text/css" />
- <title>Exmods</title>
- <script src="board.js"></script>
- </head>
- <body onload="build_board()">
- <h1>Welcome to the Exmods leaderboard</h1>
- <h3>I don't know how but they found me</h3>
- <div id="leaderboard-container" class="board-container">
- <div id="leaderboard" class="board">
- <div id="entry0" class="board-entry">
- <span id="rank0" class="board-rank board-header">Rank</span>
- <span id="name0" class="board-name board-header">Player</span>
- <span id="score0" class="board-score board-header">Score</span>
- </div>
- </div>
- </div>
- </body>
- </html>
|