Overlord sees all

This commit is contained in:
erik 2025-04-29 22:23:34 +00:00
commit a2089efa02
7 changed files with 724 additions and 0 deletions

30
static/index.html Normal file
View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dereth Tracker</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- SIDEBAR -->
<aside id="sidebar">
<!-- Segmented sort buttons -->
<div id="sortButtons" class="sort-buttons"></div>
<h2>Active Players</h2>
<ul id="playerList"></ul>
</aside>
<!-- MAP -->
<div id="mapContainer">
<div id="mapGroup">
<img id="map" src="dereth.png" alt="Dereth map">
<div id="dots"></div>
</div>
<div id="tooltip" class="tooltip"></div>
</div>
<script src="script.js" defer></script>
</body>
</html>