home.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Boppers Bizza MC Server</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="preconnect" href="https://fonts.googleapis.com">
  8. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  9. <link
  10. href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"
  11. rel="stylesheet">
  12. <link rel="stylesheet" href="static/css/normalize.css">
  13. <link rel="stylesheet" href="static/css/skeleton.css">
  14. <link rel="stylesheet" href="static/css/custom.css">
  15. <link rel="icon" type="image/x-icon" href="/static/favicon.png">
  16. </head>
  17. <body>
  18. <div class="container">
  19. <section class="header">
  20. <img src="/static/favicon.png" alt="Boppers Bizza Server Logo">
  21. <h1 class="title">Boppers Bizza Minecraft Server</h1>
  22. <h3>Current Modpack: Prominence II v.2.8.7</h3>
  23. </section>
  24. </div>
  25. <div class="parallaxbox">
  26. <a
  27. href="https://www.curseforge.com/minecraft/modpacks/prominence-2-rpg"
  28. class="button">Download Modpack on Curseforge</a>
  29. <a href="https://www.curseforge.com/download/app"
  30. class="button">Download
  31. Curseforge Launcher</a>
  32. <a href="https://prismlauncher.org/" class="button">Download Prism
  33. Launcher</a>
  34. </div>
  35. <div class="containe playerbox">
  36. <h4>Current Players: {{ usercount }}/{{ maxcount}}</h4>
  37. {% if userlist %}
  38. {% for user in userlist %}
  39. <a href="https://namemc.com/profile/{{user[0]}}">
  40. <div class="playerline">
  41. <img
  42. src="https://crafatar.com/renders/head/{{user[1]}}?overlay"
  43. alt="Minecraft head of {{user[0]}}">
  44. <span>{{ user[0]}}</span>
  45. </div>
  46. </a>
  47. {% endfor %}
  48. {% endif %}
  49. </div>
  50. </body>
  51. </html>