-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpages.html
More file actions
173 lines (158 loc) · 6.72 KB
/
pages.html
File metadata and controls
173 lines (158 loc) · 6.72 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
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
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>AlphaCMS: Pages</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="../../assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="../../assets/js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</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-1">
<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="#">AlphaCMS</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="index.html">Dashboard <span class="sr-only">(current)</span></a></li>
<li class="active"><a href="pages.html">Pages</a></li>
<li><a href="categories.html">Categories</a></li>
<li><a href="users.html">Users</a></li>
</ul>
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input class="form-control search-form" placeholder="Search" type="text">
</div>
</form>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">My Account <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Profile</a></li>
</ul>
</li>
<li><a href="login.html">Log out</a></li>
</ul>
</div>
</div>
</nav>
<section>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="list-group">
<a href="index.html" class="list-group-item"><i class="glyphicon glyphicon-dashboard"></i> Dashboard</a>
<a href="pages.html" class="list-group-item active"><i class="glyphicon glyphicon-file"></i> Pages</a>
<a href="categories.html" class="list-group-item"><i class="glyphicon glyphicon-folder-open"></i> Categories</a>
<a href="users.html" class="list-group-item"><i class="glyphicon glyphicon-user"></i> User Accounts</a>
</div>
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-6">
<h1 class="page-header"><i class="glyphicon glyphicon-file"></i> Pages</h1>
</div>
<div class="col-md-6">
<div class="btn-group actions" role="group" aria-label="...">
<a href="page.html" class="btn btn-default"><i class="glyphicon glyphicon-plus"></i> New</a>
<a href="#" class="btn btn-default"><i class="glyphicon glyphicon-pencil"></i> Edit</a>
<a href="#" class="btn btn-default"><i class="glyphicon glyphicon-remove"></i> Delete</a>
</div>
</div>
</div>
<ol class="breadcrumb">
<li><a href="index.html">Dashboard</a></li>
<li class="active">Pages</li>
</ol>
<table id="sort-table" class="table table-striped tablesorter">
<thead>
<tr>
<th><input type="checkbox"></th>
<th>Page 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>
</tr>
</thead>
<tbody>
<tr><td><input type="checkbox"></td><td><a href="page.html">Sample Page One</a></td><td>Category One</td><td>John Doe</td></tr>
<tr><td><input type="checkbox"></td><td><a href="page.html">Sample Page Two</a></td><td>Category Two</td><td>John Doe</td></tr>
<tr><td><input type="checkbox"></td><td><a href="page.html">Sample Page Three</a></td><td>Category Three</td><td>Brad Traversy</td></tr>
<tr><td><input type="checkbox"></td><td><a href="page.html">Sample Page Four</a></td><td>Category Four</td><td>John Doe</td></tr>
<tr><td><input type="checkbox"></td><td><a href="page.html">Sample Page Five</a></td><td>Category Five</td><td>James Smith</td></tr>
</tbody>
</table>
<nav>
<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 Me© 2015</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.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="js/bootstrap.js"></script>
<script src="js/jquery.tablesorter.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(); // $(this) for table tr
$rows.show().filter(function() {
var text = $(this).text().replace(/\s+/g, ' ').toLowerCase();
return !~text.indexOf(val);
}).hide();
});
</script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>