-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (67 loc) · 2.38 KB
/
index.html
File metadata and controls
85 lines (67 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.7/semantic.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.1/angular.min.js"></script>
<script src="/semantic-ui-angular.js"></script>
</head>
<body ng-app="semantic.ui">
<sm-accordion>
<sm-accordion-title>
Level 1
</sm-accordion-title>
<sm-accordion-content>
<p>Welcome to level 1</p>
<sm-accordion>
<sm-accordion-title>
Level 1A
</sm-accordion-title>
<sm-accordion-content>
Level 1A Contents
<sm-accordion>
<sm-accordion-title>
Level 1A-A
</sm-accordion-title>
<sm-accordion-content>
Level 1A-A Contents
</sm-accordion-content>
<sm-accordion-title>
Level 1A-B
</sm-accordion-title>
<sm-accordion-content>
Level 1A-B Contents
</sm-accordion-content>
</sm-accordion>
</sm-accordion-content>
<sm-accordion-title>
Level 1B
</sm-accordion-title>
<sm-accordion-content>
Level 1B Contents
</sm-accordion-content>
<sm-accordion-title>
Level 1C
</sm-accordion-title>
<sm-accordion-content>
Level 1C Contents
</sm-accordion-content>
</sm-accordion>
</sm-accordion-content>
<sm-accordion-title>
Level 2
</sm-accordion-title>
<sm-accordion-content>
<p>Welcome to level 2</p>
</sm-accordion-content>
<sm-accordion-title>
Level 3
</sm-accordion-title>
<sm-accordion-content>
<p>Welcome to level 3</p>
</sm-accordion-content>
</sm-accordion>
</body>
</html>