-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdashboard.html
More file actions
210 lines (182 loc) · 8.04 KB
/
dashboard.html
File metadata and controls
210 lines (182 loc) · 8.04 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
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
<!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.0">
<title>UNDEREMPLOYED</title>
<!-- CUSTOM STYLESHEET -->
<link rel="stylesheet" href="style.css">
<!-- ICONSCOUT CDN -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<!-- GOOGLE FONT(MONTSERATE) -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,800;1,700&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="container nav__container">
<a href="index.html" class="nav__logo">UNDEREMPLOYED</a>
<ul class="nav__items">
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="signin.html">SignIn</a></li>
<li class="nav__profile">
<div class="avatar">
<img src="./images/avatar1.jpg">
</div>
<ul>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="logout.html">Logout</a></li>
</ul>
</li>
</ul>
<button id="open__nav-btn"><i class="uil uil-bars"></i></button>
<button id="close__nav-btn"><i class="uil uil-multiply"></i></button>
</div>
</nav>
<!-- ======================== END OF NAV ======================== -->
<section class="dashboard">
<div class="container dashboard__container">
<button id="show__sidebar-btn" class="sidebar__toggle"><i class="uil uil-angle-right-b"></i></button>
<button id="hide__sidebar-btn" class="sidebar__toggle"><i class="uil uil-angle-left-b"></i></button>
<aside>
<ul>
<li>
<a href="add-post.html">
<i class="uil uil-pen"></i>
<h5>Add Post</h5>
</a>
</li>
<li>
<a href="dashboard.html" class="active" >
<i class="uil uil-postcard"></i>
<h5>Manage Posts</h5>
</a>
</li>
<li>
<a href="add-user.html">
<i class="uil uil-user-plus"></i>
<h5>Add User</h5>
</a>
</li>
<li>
<a href="manage-users.html">
<i class="uil uil-users-alt"></i>
<h5>Manage Users</h5>
</a>
</li>
<li>
<a href="add-category.html">
<i class="uil uil-edit"></i>
<h5>Add Category</h5>
</a>
</li>
<li>
<a href="manage-categories.html" >
<i class="uil uil-list-ul"></i>
<h5>Manage Categories</h5>
</a>
</li>
</ul>
</aside>
<main>
<h2>Manage Posts</h2>
<table>
<thead>
<tr>
<th>Title</th>
<th>Category</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<tr>
<td>Exploring the World: A Journey</td>
<td>Travel</td>
<td><a href="edit-post.html" class="btn sm">Edit</a></td>
<td><a href="delete-category.html" class="btn sm danger">Delete</a></td>
</tr>
<tr>
<td>Takoyaki: A Delicious Japanese Street Food</td>
<td>Food</td>
<td><a href="edit-post.html" class="btn sm">Edit</a></td>
<td><a href="delete-category.html" class="btn sm danger">Delete</a></td>
</tr>
<tr>
<td>Advancements in VR: The Future of Immersive Gaming</td>
<td>Science & Technology</td>
<td><a href="edit-post.html" class="btn sm">Edit</a></td>
<td><a href="delete-category.html" class="btn sm danger">Delete</a></td>
</tr>
<tr>
<td>Super Mario: The Timeless Classic</td>
<td>Gaming</td>
<td><a href="edit-post.html" class="btn sm">Edit</a></td>
<td><a href="delete-category.html" class="btn sm danger">Delete</a></td>
</tr>
</tbody>
</table>
</main>
</div>
</section>
<footer>
<div class="footer__socials">
<a href="https://www.youtube.com/channel/UCvtrqmex9f7J9hxZfmhoHRw" target="_blank"><i class="uil uil-youtube"></i></a>
<a href="https://www.instagram.com/_underemployed_/" target="_blank"><i class="uil uil-instagram-alt"></i></a>
<a href="https://www.linkedin.com/in/nithin-a-06b946256/" target="_blank"><i class="uil uil-linkedin"></i></a>
<a href="" target="_blank"><i class="uil uil-facebook-f"></i></a>
</div>
<div class="container footer__container">
<article>
<h4>Categotries</h4>
<ul>
<li><a href="">Wild Life</a></li>
<li><a href="">Music</a></li>
<li><a href="">Movies</a></li>
<li><a href="">Travel</a></li>
<li><a href="">Science & Technology</a></li>
<li><a href="">Food</a></li>
</ul>
</article>
<article>
<h4>Support</h4>
<ul>
<li><a href="">Online Support</a></li>
<li><a href="">Call Numbers</a></li>
<li><a href="">Emails</a></li>
<li><a href="">Social Support</a></li>
<li><a href="">Location</a></li>
<li><a href="">Food</a></li>
</ul>
</article>
<article>
<h4>Blog</h4>
<ul>
<li><a href="">Safety</a></li>
<li><a href="">Repair</a></li>
<li><a href="">Recent</a></li>
<li><a href="">Popular</a></li>
<li><a href="">Categories</a></li>
</ul>
</article>
<article>
<h4>PermaLinks</h4>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Blog</a></li>
<li><a href="">About</a></li>
<li><a href="">Services</a></li>
<li><a href="">Contact</a></li>
</ul>
</article>
</div>
<div class="footer__copyright">
<small>Copyright © UnderEmployed</small>
</div>
</footer>
<script src="./main.js"></script>
</body>
</html>