-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcms.html
More file actions
42 lines (39 loc) · 1.39 KB
/
Copy pathcms.html
File metadata and controls
42 lines (39 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Casino CMS | Heroes of Holdem</title>
<link rel="stylesheet" href="./cms.css?v=20260419cms4" />
</head>
<body class="cms-body">
<div class="cms-shell">
<div class="cms-topbar">
<div>
<h1>Casino CMS</h1>
<p>Today’s local house stats, by game, with quick drilldown.</p>
</div>
<div class="cms-actions">
<a class="cms-btn" href="./index.html">Back to casino</a>
<button id="clearAllBtn" class="cms-btn danger" type="button">Clear All</button>
</div>
</div>
<div class="cms-grid">
<section class="cms-panel">
<h2>Today overview</h2>
<div id="todayTotal" class="metric-total metric-neutral">0g</div>
<div id="todayMeta" class="metric-sub">No tracked events yet.</div>
<div style="height:18px"></div>
<h3>House profit / loss by game</h3>
<div id="gameList" class="game-list"></div>
</section>
<section class="cms-panel">
<h2 id="deepDiveTitle">Deep dive</h2>
<div id="deepDiveBody" class="empty-state">Click a game to inspect today’s tracked events.</div>
</section>
</div>
</div>
<script src="./casino-stats.js?v=20260419cms3"></script>
<script src="./cms.js?v=20260419cms4"></script>
</body>
</html>