-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity-map.html
More file actions
28 lines (26 loc) · 1.12 KB
/
activity-map.html
File metadata and controls
28 lines (26 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Activity Map</title>
<script src="/static/dashboard-guard.js"></script>
<script src="https://cdn.socket.io/4.5.0/socket.io.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"/>
<link href="/static/style.css" rel="stylesheet">
<link href="/static/activity-map.css" rel="stylesheet">
</head>
<body class="no-scroll">
<header id="main-header"></header>
<main class="container flex-grow-1 d-flex flex-column" style="padding-top: 80px; padding-bottom: 2rem;">
<div id="activity-map" class="flex-grow-1">
<div class="map-column" id="producers-col"><h2>Producers</h2></div>
<div class="map-column" id="topics-col"><h2>Topics</h2></div>
<div class="map-column" id="consumers-col"><h2>Consumers</h2></div>
<svg id="map-svg"></svg>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="/static/nav.js"></script>
<script src="/static/activity-map.js"></script>
</body>
</html>