home.html 1.1 KB

1234567891011121314151617181920212223242526272829
  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. <h2 class="title">Boppers Bizza Minecraft Server</h2>
  20. <h4>{{ usercount }}/{{ maxcount}}</h4>
  21. {% if userlist %}
  22. {% for user in userlist %}
  23. <h5>{{ user }}</h5>
  24. {% endfor %}
  25. {% endif %}
  26. </section>
  27. </div>
  28. </body>
  29. </html>