|
|
@@ -16,14 +16,34 @@
|
|
|
<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 %}
|
|
|
+ <h1 class="title">Boppers Bizza Minecraft Server</h1>
|
|
|
+ <h3>Current Modpack: Prominence II v.2.8.0hf</h3>
|
|
|
</section>
|
|
|
</div>
|
|
|
+ <div class="parallaxbox">
|
|
|
+ <a
|
|
|
+ href="https://www.curseforge.com/minecraft/modpacks/prominence-2-rpg"
|
|
|
+ class="button">Download Modpack on Curseforge</a>
|
|
|
+ <a href="https://www.curseforge.com/download/app"
|
|
|
+ class="button">Download
|
|
|
+ Curseforge Launcher</a>
|
|
|
+ <a href="https://prismlauncher.org/" class="button">Download Prism
|
|
|
+ Launcher</a>
|
|
|
+ </div>
|
|
|
+ <div class="containe playerbox">
|
|
|
+ <h4>Current Players: {{ usercount }}/{{ maxcount}}</h4>
|
|
|
+ {% if userlist %}
|
|
|
+ {% for user in userlist %}
|
|
|
+ <a href="https://namemc.com/profile/{{user[0]}}">
|
|
|
+ <div class="playerline">
|
|
|
+ <img
|
|
|
+ src="https://crafatar.com/renders/head/{{user[1]}}?overlay"
|
|
|
+ alt="Minecraft head of {{user[0]}}">
|
|
|
+ <span>{{ user[0]}}</span>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ {% endfor %}
|
|
|
+ {% endif %}
|
|
|
+ </div>
|
|
|
</body>
|
|
|
</html>
|