home.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. </head>
  16. <body>
  17. <div class="container">
  18. <section class="header">
  19. <h1 class="title">Boppers Bizza Minecraft Server</h1>
  20. <h3>Current Modpack: Prominence II v.2.8.0hf</h3>
  21. </section>
  22. </div>
  23. <div class="parallaxbox">
  24. <a
  25. href="https://www.curseforge.com/minecraft/modpacks/prominence-2-rpg"
  26. class="button">Download Modpack on Curseforge</a>
  27. <a href="https://www.curseforge.com/download/app"
  28. class="button">Download
  29. Curseforge Launcher</a>
  30. <a href="https://prismlauncher.org/" class="button">Download Prism
  31. Launcher</a>
  32. </div>
  33. <div class="containe playerbox">
  34. <h4>Current Players: {{ usercount }}/{{ maxcount}}</h4>
  35. {% if userlist %}
  36. {% for user in userlist %}
  37. <a href="https://namemc.com/profile/{{user[0]}}">
  38. <div class="playerline">
  39. <img
  40. src="https://crafatar.com/renders/head/{{user[1]}}?overlay"
  41. alt="Minecraft head of {{user[0]}}">
  42. <span>{{ user[0]}}</span>
  43. </div>
  44. </a>
  45. {% endfor %}
  46. {% endif %}
  47. </div>
  48. </body>
  49. </html>