| 1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Boppers Bizza MC Server</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link
- href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"
- rel="stylesheet">
- <link rel="stylesheet" href="static/css/normalize.css">
- <link rel="stylesheet" href="static/css/skeleton.css">
- <link rel="stylesheet" href="static/css/custom.css">
- </head>
- <body>
- <div class="container">
- <section class="header">
- <h2 class="title">Boppers Bizza Minecraft Server</h2>
- <h4>{{ usercount }}/{{ maxcount}}</h4>
- {% if userlist %}
- {% for user in userlist %}
- <h5>{{ user }}</h5>
- {% endfor %}
- {% endif %}
- </section>
- </div>
- </body>
- </html>
|