-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.html
More file actions
84 lines (77 loc) · 3.03 KB
/
feed.html
File metadata and controls
84 lines (77 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9J47LVK94G"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9J47LVK94G');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Abhirath Batra - Reading Feed. Articles and resources I'm currently reading.">
<title>Feed - Abhirath Batra</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container">
<div class="nav-brand">
<a href="index.html#home">Abhirath Batra</a>
</div>
<button class="nav-toggle" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu">
<li><a href="index.html#home" class="nav-link">Home</a></li>
<li><a href="index.html#blogs" class="nav-link">Blogs</a></li>
<li><a href="feed.html" class="nav-link active">Feed</a></li>
<li><a href="index.html#curations" class="nav-link">Curations</a></li>
</ul>
</div>
</nav>
<!-- Feed Section -->
<section id="feed" class="section active">
<div class="container">
<h2>Feed</h2>
<div class="divider"></div>
<p class="section-description">Things I want to read - sorted by most recently added.</p>
<div class="curations-content">
<div class="search-container">
<input type="text" id="feedSearch" class="search-box" placeholder="Search feed by title...">
<span class="search-results-count" id="feedSearchCount"></span>
</div>
<div class="table-container">
<table class="curations-table" id="feedTable">
<thead>
<tr>
<th>Title</th>
<th class="category-col">Category</th>
<th class="date-col">Added</th>
</tr>
</thead>
<tbody id="feedTableBody">
<!-- Populated by JavaScript -->
</tbody>
</table>
</div>
<div class="pagination" id="feedPagination">
<!-- Populated by JavaScript -->
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2024 Abhirath Batra. Built with HTML, CSS, and JavaScript.</p>
</div>
</footer>
<script src="js/feed.js"></script>
</body>
</html>