-
Notifications
You must be signed in to change notification settings - Fork 0
/
article.html
97 lines (82 loc) · 3.02 KB
/
article.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/dashboard.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
<title>Dashboard</title>
</head>
<body>
<div class="sidebar">
<div class="logo">
<h1>REMY</h1>
</div>
<ul class="menu">
<li class="active">
<button>
<a href="dashboard.html"><i class="fas fa-tachometer-alt"></i></a>
<span>Dashboard</span></button>
</li>
<li class="active">
<button>
<a href="article.html"><i class="fa-solid fa-newspaper"></i></a>
<span>Blog</span></button>
</li>
<li class="active">
<button>
<a href="index.html"><i class="fa-solid fa-house"></i></i></a>
<span>home</span></button>
</li>
<li class="active">
<button>
<a href="queries.html"><i class="fa-solid fa-clipboard-question"></i></a>
<span>querries</span></button>
</li>
<li class="active">
<button>
<a href="comments.html"><i class="fa-solid fa-comments" style="color: #000000;"></i></a>
<span>comments</span></button>
</li>
<li class="logout">
<button>
<a href="add blogs.html"><i class="fa-solid fa-plus"></i></i></a>
<span>add</span></button>
</li>
</ul>
</div>
<div class="main--content">
<div class="header--wrapper">
<div class="header--title">
<span>primary</span>
<h2>Dashboard</h2>
</div>
<div class="user--info">
<div class="search--box">
<i class="fa-solid fa-search"></i>
<input type="text" placeholder="search"/>
</div>
<img src="./assets/phot.png" alt=""/>
</div>
</div>
<div class="blogs" id="blogge">
<!-- <a href="single-blog.html">
<div class="blog-container " >
<div class="blog-wrapper ">
<img src="./assets/blog image.png">
<br>
<h3>Reasons Business needs Agency.</h3>
<br>
<t class=text>Design Club is a digital agency specialized in ecommerce. We build scalable, high-end web shops.</t>
<div class="blog-heart"><img src="./assets/heart.png">2</div>
<p> <span id="delete"><i class="fa-solid fa-trash" style="color: #d11515;"></i>delete</span>
<span id="refresh"><i class="fa-solid fa-arrows-rotate" style="color: #63E6BE;"></i> >Refresh</span></p>
</div>
</a> -->
</div>
<footer>Made with ❤️ by M.Rwema Remy</footer>
</div>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="./js/blogedit.js"></script>
</body>
</html>