-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (69 loc) · 2.88 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
<!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>GDSC Blog Template</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<!-- Custom Style -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="nav">
<div class="nav-brand">
<a href="index.html" class="text-gray">GDSC • Build Personal Blog with Firebase</a>
</div>
</nav>
<div class="main-container">
<h2>Blog lists</h2>
<p>This is the page for listing all the blog items, and also allows filtering by category.</p>
<div class="filter-container">
<div class="category-head">
<ul>
<div class="category-title active" id="all">
<li>All</li>
</div>
<div class="category-title" id="culture">
<li>Culture</li>
</div>
<div class="category-title" id="politics">
<li>Politics</li>
</div>
<div class="category-title" id="finance">
<li>Finance</li>
</div>
<div class="category-title" id="business">
<li>Business</li>
</div>
<div class="category-title" id="sports">
<li>Sports</li>
</div>
</ul>
</div>
<div class="posts-collect">
<div class="posts-main-container" id="post-container">
<!-- single post -->
<div class="post">
<div class="post-img">
<img src="images/1.png" alt="post">
<span class="category-name business">business</span>
</div>
<div class="post-content">
<div class="post-content-top">
<span><i class="fas fa-calendar"></i>December 19, 2021</span>
</div>
<h2>The dummy blog for demo in GDSC Event.</h2>
</div>
<a href="blog.html?title=1234" class="read-btn">READ MORE</a>
</div>
<!-- end of single post -->
</div>
</div>
</div>
</div>
<script src="script_index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.1/mustache.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.24.0/axios.min.js"></script>
</body>
</html>