Design and logic for user-facing site https://exmods.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.8KB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta name="theme-color" content="#20c420" />
  5. <meta name="author" content="Exmods community" />
  6. <meta name="keywords" content="exmods,gamecraft,modding,mod" />
  7. <meta name="og:type" content="website" />
  8. <meta name="og:title" content="Exmods" />
  9. <meta name="og:description" content="Gamecraft modding website" />
  10. <meta name="description" content="Gamecraft modding website" />
  11. <meta name="og:image" content="../static/favicon.png" />
  12. <meta name="og:url" content="https://www.exmods.org" />
  13. <meta charset="UTF-8" />
  14. <link rel="icon" href="../static/favicon.png" type="image/x-icon"/>
  15. <link rel="shortcut icon" href="../static/favicon.png" type="image/x-icon"/>
  16. <link rel="stylesheet" href="../static/style.css" type="text/css" />
  17. <title>Exmods</title>
  18. <script src="board.js"></script>
  19. </head>
  20. <body onload="build_board()">
  21. <h1>High Scores</h1>
  22. <h3 id="leaderboard-name"></h3>
  23. <div id="leaderboard-container" class="board-container">
  24. <div id="leaderboard" class="board">
  25. <div id="entry0" class="board-entry">
  26. <span id="rank0" class="board-rank board-header">Rank</span>
  27. <span id="name0" class="board-name board-header">Player</span>
  28. <span id="score0" class="board-score board-header">Score</span>
  29. </div>
  30. </div>
  31. </div>
  32. <footer>
  33. Scores from <a href="https://git.exmods.org/NGnius/leadercraft">Leadercraft</a> by <a href="https://twitter.com/NGniusness">NGnius</a>|<a href="https://git.exmods.org/ExMods/html-site">Site Repository</a>|<a href="https://exmods.org">Home</a>|<a href="https://discord.gg/2CtWzZT">Discord</a>|<a href="https://twitter.com/GamecraftMods">Twitter</a>
  34. </footer>
  35. </body>
  36. </html>