-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (125 loc) · 7.08 KB
/
index.html
File metadata and controls
146 lines (125 loc) · 7.08 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html id="top" lang="en" ng-app="demo">
<head>
<title>AngularUI for AngularJS</title>
<link href="logo/UI_Shield.png" rel="shortcut icon">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="css/app.css" rel="stylesheet">
</head>
<body ng-controller="DemoCtrl">
<header class="navbar navbar-fixed-top navbar-default">
<div class="navbar-inner">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="http://angular-ui.github.io/">AngularUI</a>
</div>
<div class="container">
<div class="container">
<div class="dropdown"></div>
<div class="navbar-collapse">
<ul class="nav navbar-nav">
<li>
<a href="#modules">Modules</a>
</li>
<li>
<a href="#ide-plugins">IDE Plugins</a>
</li>
<li>
<a href="https://github.com/angular-ui"><i class="fa fa-lg fa-github"></i> GitHub</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</header>
<div>
<header class="jumbotron" id="overview">
<div class="container">
<div class="col-sm-3 logo"></div>
<div class="col-sm-7">
<h1>AngularUI</h1>
<p>The companion suite(s) to the <a href="http://angularjs.org">AngularJS</a> framework.</p>
</div>
</div>
<div class="bs-docs-social">
<div class="container">
<ul class="bs-docs-social-buttons">
<li>
<a href="https://twitter.com/share" class="twitter-share-button" data-hashtags="angularjs">Tweet</a>
<script>!function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = "//platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
}
}(document, "script", "twitter-wjs");</script>
</li>
<li>
<!-- Place this tag where you want the +1 button to render. -->
<div class="g-plusone" data-size="medium"></div><!-- Place this tag after the last +1 button tag. -->
<!-- Place this tag after the last +1 button tag. -->
<script type="text/javascript">
(function() {
var po = document.createElement('script');
po.type = 'text/javascript';
po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(po, s);
})();
</script>
</li>
</ul>
</div>
</div>
</header>
<div class="container" >
<section id="modules">
<h1 class="page-header">Modules</h1>
<p class="text-muted">
<input class="form-control" autofocus="autofocus" style="max-width: 15em; display: inline-block;" ng-model="searchText" placeholder="search...">
{{(modules| filter:searchText).length}} modules found
</p>
<div class="list-group">
<div ng-repeat="module in modules| filter:searchText | orderBy: 'name'" href="{{module.src}}" class="list-group-item">
<p class="pull-right">
<a href="{{module.home}}" title="Home / Demo page" ng-if="module.home"><i class="fa fa-3x fa-home"></i></a>
<a href="{{module.src}}" title="Code"><i class="fa fa-3x fa-github"></i></a>
</p>
<h4 class="list-group-item-heading">{{module.name}}</h4>
<p class="list-group-item-text text-muted">{{module.desc}}</p>
</div>
</div>
</section>
<section id="ide-plugins">
<h1 class="page-header">IDE Plugins <small>AngularJS support in your favorite text editors</small></h1>
<div class="clearfix">
<ul class="nav nav-tabs nav-stacked col-md-6">
<li>
<a href="http://github.com/angular-ui/AngularJS.tmbundle">AngularJS.tmbundle <span class="text-muted">TextMate</span></a>
</li>
<li>
<a href="http://github.com/angular-ui/AngularJS-Atom">AngularJS-Atom <span class="text-muted">Atom</span></a>
</li>
</ul>
<ul class="nav nav-tabs nav-stacked col-md-6">
<li>
<a href="http://github.com/angular-ui/AngularJS-sublime-package">AngularJS.sublime-package <span class="text-muted">SublimeText</span></a>
</li>
<li>
<a href="http://github.com/angular-ui/AngularJS-brackets">AngularJS-brackets <span class="text-muted">Brackets</span></a>
</li>
</ul>
</div>
</section>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.1/angular.js"></script>
<script src="js/app.js"></script>
</body>
</html>