-
Notifications
You must be signed in to change notification settings - Fork 0
/
pages.html
249 lines (231 loc) · 9.56 KB
/
pages.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<!DOCTYPE html>
<html lang="en">
<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>CMS SiliwangiDev</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-2">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">SiliwangiDev CMS</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-2">
<ul class="nav navbar-nav">
<li><a href="index.html">Dashboard <span class="sr-only">(current)</span></a></li>
<li><a href="messages.html">Messages</a></li>
<li class="active"><a href="pages.html">Projects</a></li>
<li><a href="catagories.html">Categories</a></li>
<li><a href="users.html">Users</a></li>
</ul>
<form class="navbar-form navbar-left" role="search">
<input type="text" class="form-control col-lg-8 search-form" placeholder="Search">
</form>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">My Account <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Profile</a></li>
</ul>
</li>
<li><a href="login.html">Logout</a></li>
</ul>
</div>
</div>
</nav>
<section>
<div class="container">
<div class="row" >
<div class="col-md-4">
<ul class="list-group">
<li class="list-group-item"><i class="glyphicon glyphicon-dashboard"> </i> Dashboard</li>
<li class="list-group-item"><i class="glyphicon glyphicon-envelope"> </i><span class="badge">14</span> Message</li>
<li class="list-group-item active"><i class="glyphicon glyphicon-file"> </i> Projects</li>
<li class="list-group-item"><i class="glyphicon glyphicon-folder-open"> </i> Categories</li>
<li class="list-group-item"><i class="glyphicon glyphicon-user"> </i> User Accounts</li>
</ul>
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-6">
<h1 class="page-header text-primary"><i class="glyphicon glyphicon-file"></i> Projects</h1>
</div>
<div class="col-md-6">
<div class="btn-group actions" role="group" aria-label="...">
<a class="btn btn-default" href="#"><i class="glyphicon glyphicon-plus"></i> New</a>
<a class="btn btn-default" href="#"><i class="glyphicon glyphicon-pencil"></i> Edit</a>
<a class="btn btn-default" href="#"><i class="glyphicon glyphicon-remove"></i> Delete</a>
</div>
</div>
</div>
<hr>
<ol class="breadcrumb">
<li><a href="index.html">Dashboard</a></li>
<li class="active">Projects</li>
</ol>
<table id="sort-table" class="table table-striped table-sorter">
<thead>
<tr class="text-info">
<th><input type="checkbox"></th>
<th>Project Title <i class="glyphicon glyphicon-chevron-down"></i> </th>
<th>Category <i class="glyphicon glyphicon-chevron-down"></i> </th>
<th>Author <i class="glyphicon glyphicon-chevron-down"></i> </th>
<th>Description <i class="glyphicon glyphicon-chevron-down"></i> </th>
<th>Image <i class="glyphicon glyphicon-chevron-down"></i> </th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project One</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Two</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Three</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Four</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Five</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Six</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Seven</a></td>
<td>Web Programming</td>
<td>Harry Efferian</td>
<td>Created with React</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Eight</a></td>
<td>Web Design</td>
<td>Harry Lim</td>
<td>Created with Angular</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Nine</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Ten</a></td>
<td>Web Programming</td>
<td>MEthod thod thod</td>
<td>Created with Laravel</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td><a href="page.html">Sample Project Eleven</a></td>
<td>Web Programming</td>
<td>Samuel Ermawan</td>
<td>Created with Code Igniter</td>
<td>CreatedwithBootstrap.jpg</td>
</tr>
</tbody>
</table>
<nav aria-label="Page navigation">
<ul class="pagination">
<li>
<a href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li>
<a href="#" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</section>
<footer>
<p>Copyright 2017, All Right Reserved.</p>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/main.js"></script>
<script src="js/jquery.tablesorter.min.js"></script>
<script>
$(function(){
$('#sort-table').tablesorter({
sortList:[[0,0],[1,0]]
});
});
</script>
<script>
var $rows = $('table tr');
$('.search-form').keyup(function(){
var val = $.trim($(this).val()).replace(/ +/g,' ').toLowerCase();
$rows.show().filter(function(){
var text = $(this).text().replace(/\s+/g, ' ').toLowerCase();
return !~text.indexOf(val);
}).hide();
});
</script>
</body>
</html>