-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathindex.html
73 lines (54 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<title>Inquisitor</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/select2.css">
<script type="text/javascript" src="js/vendor/head.load.min.js"></script>
<script type="text/javascript" src="js/load.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body ng-app="Inquisitor">
<div class="navbar navbar navbar-fixed-top" ng-controller="NavbarCtrl">
<div class="navbar-inner">
<div class="container" style="margin-top:5px">
<a class="brand" href="#/">Inquisitor</a>
<ul class="nav nav-tabs" ng-repeat="tab in data.tabs" ng-cloak>
<li ng-class="{active:isActive(tab)}">
<a href="#/{{tab|lowercase}}">{{tab}}</a>
</li>
<!--
<li activetab="{{data.activeTab}}" tab="{{tab}}">
<a href="#/{{tab|lowercase}}">{{tab}}</a>
</li>
-->
<!--
<li activetab="{{data.activeTab}}" tab="Queries">
<a href="#/queries">Queries</a>
</li>
<li activetab="{{data.activeTab}}" tab="Analyzers">
<a href="#/analyzers">Analyzers</a>
</li>
<li activetab="{{data.activeTab}}" tab="Tokenizers">
<a href="#/tokenizers">Tokenizers</a>
</li>
-->
</ul>
</div>
</div>
</div>
<div ng-view></div>
</body>
</html>