forked from rochdev/angular-lite-accordion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 971 Bytes
/
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
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta charset="utf-8">
<title>Example</title>
<link rel="stylesheet" href="example.css">
</head>
<body ng-controller="ExampleCtrl">
<div class="container">
<ul lite-accordion-group close-others="true" class="unstyled">
<li lite-accordion ng-repeat="example in examples" is-open="example.active">
<h3 lite-accordion-toggle class="accordion-header">
{{example.header}}
</h3>
<div lite-accordion-body class="accordion-body slide">
{{example.content}}
</div>
</li>
</ul>
</div>
<script src="../bower_components/jquery/dist/jquery.js"></script>
<script src="../bower_components/angular/angular.js"></script>
<script src="../bower_components/angular-animate/angular-animate.js"></script>
<script src="../angular-lite-accordion.js"></script>
<script src="example.js"></script>
</body>
</html>