-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
36 lines (32 loc) · 1.16 KB
/
dashboard.html
File metadata and controls
36 lines (32 loc) · 1.16 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
<!-- This is a static file -->
<!-- served from your routes in server.js -->
<!-- You might want to try something fancier: -->
<!-- html/nunjucks docs: https://mozilla.github.io/nunjucks/ -->
<!-- pug: https://pugjs.org/ -->
<!-- haml: http://haml.info/ -->
<!-- hbs(handlebars): http://handlebarsjs.com/ -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Slackercom Dashboard</title>
<meta name="description" content="Slackercom Dashboard">
<link id="favicon" rel="icon" href="https://glitch.com/edit/favicon-app.ico" type="image/x-icon">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="../styles.css">
<!-- import the webpage's client-side javascript file -->
<script src="https://unpkg.com/d3@5.6.0/dist/d3.min.js"></script>
</head>
<body>
<header>
<h1>
Dashboard
</h1>
</header>
<svg width="1100" height="550"></svg>
<script src="../client.js" defer></script>
<script src="../graph-mvp.js" defer></script>
</body>
</html>