-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (34 loc) · 1.02 KB
/
index.html
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
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div class="text-center">
<img src="beastmode.svg" height="100" />
</div>
<h1 class="text-center"> Beast Mode Demo</h1>
<div>
<h2>By Date</h2>
<small>Profit is an aggregated Beast Mode</small>
<ul id="byDate" class="list-group"></ul>
</div>
<br />
<div>
<h2>By RepID</h2>
<small>Profit is a non-aggregated Beast Mode</small>
<ul id="byRep" class="list-group"></ul>
</div>
<br />
<div>
<h2>By Full Name</h2>
<small>Name is a Beast Mode that has been grouped on.</small>
<ul id="byName" class="list-group"></ul>
</div>
<br />
<!-- domo.js optional utils -->
<script src="domo.js"></script>
<script src="app.js"></script>
<script stc="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>