forked from krausest/js-framework-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·39 lines (38 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<title>JS-Framkeworks Benchmark</title>
<meta charset="UTF-8">
<link href="css/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
<link rel="stylesheet" href="css/main.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Choose a framework:</h3>
</div>
<div class="panel-body">
<ul class="nav nav-pills nav-stacked">
<li><a href="angular-v1.5.8/index.html"><span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span> Angular v1.5.8</a></li>
<li><a href="angular-v2.0.0-rc5/index.html"><span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span> Angular v2.0.0-rc5</a></li>
<li><a href="react-v15.3.1/index.html"><span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span> React v15.3.1</a></li>
<li><a href="vanillajs/index.html"><span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span> VanillaJS</a></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Choose a Report:</h3>
</div>
<div class="panel-body">
<ul class="nav nav-pills nav-stacked">
<li><a href="webdriver-ts/table.html"><span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span> Table Report</a></li>
<li><a href="webdriver-ts/graph.html"><span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span> Graph Report</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>