-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdashboard.html
More file actions
102 lines (91 loc) · 4.8 KB
/
dashboard.html
File metadata and controls
102 lines (91 loc) · 4.8 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
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
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>ALPSCore: Applications and Libraries for Physics Simulations</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- Custom styles for this template -->
<link href="stylesheet.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Google tracking script-->
<!-- ============== -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-51838233-1', 'alpscore.org');
ga('send', 'pageview');
</script>
<!-- Navigation bar -->
<!-- ============== -->
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><span class="alpscore"></span></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html"><i class="fa fa-home fa-fw"></i> Home</a></li>
<!--Temporarily disabled:--><!--li class="active"><a href="dashboard.html"><i class="fa fa-dashboard fa-fw"></i> Dashboard</a></li-->
<li><a href="https://github.com/ALPSCore/"><i class="fa fa-github fa-fw"></i> GitHub</a></li>
<li><a href="https://github.com/ALPSCore/ALPSCore/issues?state=open"><i class="fa fa-exclamation-circle fa-fw"></i> Issues</a></li>
<li><a href="https://github.com/ALPSCore/ALPSCore/wiki"><i class="fa fa-book fa-fw"></i> Wiki</a></li>
<li><a href="doxygen_snapshot/html/index.html"><i class="fa fa-sitemap fa-fw"></i> Doxygen</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<!-- Banner -->
<!-- ====== -->
<div class="jumbotron">
<div class="container">
<h1><span class="alpscore"></span> dashboard</h1>
</div>
</div>
<!-- Content -->
<!-- ======= -->
<div class="container">
<!-- Gathered information -->
<!--div class="row"-->
<!-- Dashboard (issues) -->
<div id="milestones" class="col-lg-8">
</div>
<!--/div-->
</div>
<!-- Placed at the end of the document so the pages load faster -->
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!-- Bootstrap -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="githubUtil.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
githubMilestones('ALPSCore/ALPSCore', '#milestones');
githubIssueLabel('ALPSCore/ALPSCore', 'Ongoing projects', 'ongoing', '#milestones')
});
</script>
</body>
</html>