-
Notifications
You must be signed in to change notification settings - Fork 0
/
tables.html
217 lines (201 loc) · 7.02 KB
/
tables.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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Admin Panel Template</title>
<meta name="description" content="">
<!-- Icons -->
<link rel="icon" type="image/png" href="#">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/flatly-theme.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<header>
<nav class="navbar navbar-default">
<div class="container">
<a class="navbar-brand" href="#">Admin Panel</a>
<ul class="nav navbar-nav navbar-right pull-right" href="#">
<li><a href="#"><i class="fa fa-sign-in"></i> Log Out</a></li>
</ul>
</div>
</nav>
</header>
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="list-group" id="collapse-panel">
<div class="list-group-item active">
Bootstrap Features
<button class="btn btn-primary btn-xs pull-right visible-xs hidden" data-toggle="collapse" data-parent="#collapse-panel" href="#collapseMenu"><i class="fa fa-bars" aria-hidden="true"></i></button>
</div>
<div class="custom-collapse collapse" id="collapseMenu">
<a href="index.html" class="list-group-item">Typography</a>
<a href="buttons.html" class="list-group-item">Buttons </a>
<a href="forms.html" class="list-group-item">Forms</a>
<a href="panel-alerts.html" class="list-group-item">Panels and alerts</a>
<a href="dialogs.html" class="list-group-item">Dialogs</a>
</div>
</div>
<div class="list-group">
<div class="list-group-item active">
Tables
<button class="btn btn-primary btn-xs pull-right visible-xs hidden" data-toggle="collapse" data-parent="#collapse-panel" href="#collapseMenu2"><i class="fa fa-bars" aria-hidden="true"></i></button>
</div>
<div class="custom-collapse collapse" id="collapseMenu2">
<a href="tables.html" class="list-group-item">Basic Tables</a>
<a href="datatables.html" class="list-group-item">DataTables </a>
</div>
</div>
<div class="list-group">
<div class="list-group-item active">
Charts
<button class="btn btn-primary btn-xs pull-right visible-xs hidden" data-toggle="collapse" data-parent="#collapse-panel" href="#collapseMenu3"><i class="fa fa-bars" aria-hidden="true"></i></button>
</div>
<div class="custom-collapse collapse" id="collapseMenu3">
<a href="chartjs.html" class="list-group-item">ChartJs</a>
</div>
</div>
<div class="list-group">
<div class="list-group-item active">
Addons
<button class="btn btn-primary btn-xs pull-right visible-xs hidden" data-toggle="collapse" data-parent="#collapse-panel" href="#collapseMenu4"><i class="fa fa-bars" aria-hidden="true"></i></button>
</div>
<div class="custom-collapse collapse" id="collapseMenu4">
<a href="addons/awesome-bootstrap-checkbox.html" class="list-group-item">Awesome Bootstrap Checkbox</a>
<a href="addons/summernote.html" class="list-group-item">Summernote Editor</a>
</div>
</div>
<div class="list-group">
<div class="list-group-item active">
Examples
<button class="btn btn-primary btn-xs pull-right visible-xs hidden" data-toggle="collapse" data-parent="#collapse-panel" href="#collapseMenu5"><i class="fa fa-bars" aria-hidden="true"></i></button>
</div>
<div class="custom-collapse collapse" id="collapseMenu5">
<a href="blank-page.html" class="list-group-item">Blank Page</a>
<a href="login1.html" class="list-group-item">Login 1</a>
<a href="login2.html" class="list-group-item">Login 2</a>
</div>
</div>
<div class="list-group" id="collapse-panel">
<div class="list-group-item active">
Bootswatch themes
<button class="btn btn-primary btn-xs pull-right visible-xs hidden" data-toggle="collapse" data-parent="#collapse-panel" href="#collapseMenu6"><i class="fa fa-bars" aria-hidden="true"></i></button>
</div>
<div class="custom-collapse collapse" id="collapseMenu6">
<a href="indexV2.html" class="list-group-item">Lumen</a>
</div>
</div>
</div>
<div class="col-sm-9">
<div class="panel panel-default">
<div class="panel-body">
<h2>Table</h2>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
<h2>Bordered table</h2>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
<h2>Hover effect table</h2>
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<footer>
<script src="js/jquery-1.12.3.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
</footer>
</body>
</html>