This repository has been archived on 2023-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
gameserver/website/index.html

84 lines
3.8 KiB
HTML
Raw Normal View History

2022-02-02 03:36:29 +01:00
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>onFOSS-LAN</title>
2022-02-02 03:36:29 +01:00
<link rel="stylesheet" href="css/bootstrap.min.css">
2022-02-07 02:34:02 +01:00
<link rel="stylesheet" href="css/serverstats.css">
2022-02-06 20:36:57 +01:00
<link rel="icon" href="icon.svg" sizes="any" type="image/svg+xml">
2022-02-07 02:34:02 +01:00
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="js/serverstats.js" charset="utf-8"></script>
2022-02-02 03:36:29 +01:00
</head>
<body>
<nav class="container">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
<img class="bi me-2" width="40" height="32" src="img/blackmage.svg">
<span class="fs-4">onFOSS-LAN hosted by HOSTEDBYNAME</span>
2022-02-02 03:36:29 +01:00
</a>
<ul class="nav nav-pills">
<li class="nav-item"><a href="index.html" class="nav-link active" aria-current="page">Home</a></li>
<li class="nav-item"><a href="tournament.html" class="nav-link">Tournament</a></li>
<li class="nav-item"><a href="schedule.html" class="nav-link">Schedule</a></li>
<li class="nav-item"><a href="admin.html" class="nav-link">Admin</a></li>
</ul>
</header>
</nav>
<div class="container">
<div class="row">
<div class="col-md-8">
<h1>Games</h1>
<p>There are a few game servers running. To connect, simply start the game and connect to this domain.</p>
<p>Available games are:</p>
<ul>
<li>Bzflag (<a href="https://www.bzflag.org/downloads/">download</a>)</li>
<li>Hedgewars (<a href="https://www.hedgewars.org/download.html">download</a>)</li>
2022-02-13 19:30:31 +01:00
<li>Lix (<a href="https://github.com/SimonN/LixD">download</a>)</li>
2022-02-02 03:36:29 +01:00
<li>Mindustry (<a href="https://github.com/Anuken/Mindustry/releases">download</a>)</li>
<li>OpenHV (<a href="https://github.com/OpenHV/OpenHV/releases">download</a>)</li>
<li>OpenSpades (<a href="https://github.com/yvt/openspades/releases">download</a>)</li>
<li>SuperTuxKart (<a href="https://supertuxkart.net/Download">download</a>)</li>
<li>Teeworlds (<a href="https://www.teeworlds.com/?page=downloads">download</a>)</li>
<li>Unvanquished (<a href="https://unvanquished.net/download/">download</a>)</li>
2022-02-02 03:36:29 +01:00
<li>Xonotic (<a href="https://xonotic.org/download/">download</a>)</li>
</ul>
<p>Enjoy!</p>
2022-02-13 19:16:47 +01:00
<h1>Voice chat</h1>
<p>Mumble chat on <a href="mumble://hribhrib.at">hribhrib.at</a></p>
<h1>Code</h1>
<p>Code for setting up server is on <a href="https://github.com/DeathByDenim/gameserver">Github</a></p>
2022-02-02 03:36:29 +01:00
</div>
<div class="col-6 col-md-4">
<h5>Live stats</h5>
2022-02-13 19:16:47 +01:00
<!-- <div class="offline-blur">OFFLINE</div>
<div class="offline">OFFLINE</div> -->
2022-02-02 03:36:29 +01:00
<noscript>
Live stuff requires JavaScript unfortunately
</noscript>
2022-02-07 02:34:02 +01:00
<h6>CPU</h6>
<div class="graph">
<svg id="cpugraph" width="400" height="200" xmlns="http://www.w3.org/2000/svg">
<rect class="graphframe" x="0" y="0" width="301" height="100" />
</svg>
</div>
<h6>Memory</h6>
<div class="graph">
<svg id="memgraph" width="400" height="200" xmlns="http://www.w3.org/2000/svg">
<rect class="graphframe" x="0" y="0" width="301" height="100" />
</svg>
</div>
<script>
d3.select('#cpugraph').attr('viewBox', '0 0 310 100');
d3.select('#memgraph').attr('viewBox', '0 0 310 100');
update();
setInterval(update, 5000);
</script>
2022-02-02 03:36:29 +01:00
</div>
</div>
</div>
</body>
</html>