-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (145 loc) · 5.74 KB
/
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
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
<!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 class="active"><a href="index.html">Dashboard <span class="sr-only">(current)</span></a></li>
<li><a href="messages.html">Messages</a></li>
<li><a href="pages.html">Projects</a></li>
<li><a href="catagories.html">Categories</a></li>
<li><a href="users.html">Users</a></li>
</ul>
<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 active"><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"><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">
<h1 class="page-header text-primary"><i class="glyphicon glyphicon-dashboard"></i> Dashboard</h1>
<hr>
<h3 class="text-primary">Lastest Project</h3>
<table class="table table-striped">
<tr class="text-info">
<th>Project Title</th>
<th>Category</th>
<th>Author</th>
<th>Description</th>
</tr>
<tr>
<td><a href="#">Sample Project One</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
</tr>
<tr>
<td><a href="#">Sample Project Two</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
</tr>
<tr>
<td><a href="#">Sample Project Three</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
</tr>
<tr>
<td><a href="#">Sample Project Four</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
</tr>
<tr>
<td><a href="#">Sample Project Five</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
</tr>
<tr>
<td><a href="#">Sample Project Six</a></td>
<td>Web Design</td>
<td>Harry Ermawan</td>
<td>Created with Bootstrap</td>
</tr>
</table>
<a href="pages.html" class="btn btn-default">View All Projects</a>
<hr>
<h3 class="text-primary">Lastest Users</h3>
<table class="table table-striped">
<tr class="text-info">
<th>Name</th>
<th>Email </th>
<th>Group</th>
</tr>
<tr>
<td><a href="#">Harry Ermawan</a></td>
<td>[email protected]</td>
<td>admin</td>
</tr>
<tr>
<td><a href="#">Titus Efferian</a></td>
<td>[email protected]</td>
<td>admin</td>
</tr>
<tr>
<td><a href="#">Shem lim</a></td>
<td>[email protected]</td>
<td>admin</td>
</tr>
</table>
<a href="users.html" class="btn btn-default">View All Users</a>
</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>
</body>
</html>