-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (75 loc) · 3.66 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GO Tempus</title>
<!-- Bootstrap core CSS -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=PT+Serif:400,700,400italic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/jasny-bootstrap.min.css" rel="stylesheet">
<link href="css/navmenu-reveal.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/metrics-graphics/2.7.0/metricsgraphics.min.css" rel="stylesheet" type="text/css">
<link href="css/metricsgraphics-demo.css" rel="stylesheet" type="text/css" id="light">
<link href="" rel="stylesheet" type="text/css" id="dark">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.12/d3.js" charset="utf-8"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="js/jasny-bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/metrics-graphics/2.7.0/metricsgraphics.js"></script>
<!-- Custom styles for this template -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<style>
a.btn,a.btn:hover,a.btn:visited,a.btn:active{
text-decoration: none;
color: #FFFFFF;
}
</style>
</head>
<body>
<div class="navmenu navmenu-default navmenu-fixed-left">
<a class="navmenu-brand" href="#"><font face="zapfino">Tempus</font></a>
<ul class="nav navmenu-nav">
<div class="btn-group">
<a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">Select a method<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Changepoint Detection</a></li>
<li><a href="#">Breakpoint Detection</a></li>
<li class="divider"></li>
<li><a href="#">ARIMA</a></li>
<li><a href="#">MMPP</a></li>
<li><a href="#">Anomaly Detection</a></li>
<li class="divider"></li>
<li><a href="#">Seasonal Trend Decomposition</a></li>
<li><a href="#">Moving Average</a></li>
<li class="divider"></li>
<li><a href='#'>Causal Impact</a></li>
</ul>
</div>
<!-- /.modal-dialog -->
<br>
<br>
<div id="drop_zone">Drop file here</div>
</div>
<div class="canvas">
<div class="navbar navbar-default navbar-fixed-top">
<button type="button" class="navbar-toggle" data-toggle="offcanvas" data-recalc="false" data-target=".navmenu" data-canvas=".canvas">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="container" id='output'>
</div><!-- /.container -->
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/drop.js"></script>