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.

39 lines
1.9KB

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