-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubscriptions.html
More file actions
113 lines (105 loc) · 6.66 KB
/
Copy pathsubscriptions.html
File metadata and controls
113 lines (105 loc) · 6.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://static.cloudflareinsights.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data: https:; connect-src 'self' https://*.supabase.co wss://*.supabase.co https://cdn.jsdelivr.net https://cloudflareinsights.com https://static.cloudflareinsights.com; frame-src *;" />
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Following - K. Notes</title>
<meta name="description" content="View the people you follow on K. Notes." />
<meta property="og:type" content="website" />
<meta property="og:title" content="Following - K. Notes" />
<meta property="og:description" content="View the people you follow on K. Notes." />
<meta property="og:image" content="assets/img/logo.png" />
<meta property="og:url" content="subscriptions.html" />
<link href="assets/css/styles.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap"
rel="stylesheet" />
<link rel="icon" type="image/png" href="assets/img/logo.png" />
<link href="assets/css/subscriptions.css" rel="stylesheet" />
</head>
<body class="font-body-md text-body-md text-on-surface">
<noscript>
<div style="padding:24px;text-align:center;color:#666">JavaScript is required to view your subscriptions.</div>
</noscript>
<div class="max-w-[85%] mx-auto bg-surface-bright pb-8 mt-2">
<header
class="bg-[#ff6600] text-black text-sm rounded-none w-full flat no shadows flex items-center justify-between px-2 py-0.5 max-w-[85%] mx-auto"
style="max-width: 100%;">
<div class="flex items-center gap-1 w-full">
<a href="index.html" class="font-bold text-black px-1 mr-2 hover:underline" title="K.Notes">K. Notes</a>
<div class="flex flex-wrap items-center gap-1 text-black text-[13px]">
<a class="hover:underline" href="index.html">feed</a> |
<a class="hover:underline" href="comments.html">comments</a> |
<a class="hover:underline" href="ask.html">ask</a> |
<a class="hover:underline" href="show.html">show</a> |
<a class="hover:underline" href="submit.html">submit</a> |
<a class="hover:underline" href="leaderboard.html">leaders</a>
</div>
<div class="ml-auto text-black text-[13px] flex items-center gap-4">
<a class="hover:underline text-black" href="login.html">login</a>
</div>
</div>
</header>
<main class="bg-[#f6f6ef] p-6 min-h-[50vh]">
<div id="subs-loading" class="text-center p-4 text-gray-500 text-sm">Loading...</div>
<div id="subs-main-content">
<div class="flex flex-col sm:flex-row items-start sm:items-center justify-between mb-6 gap-4">
<div class="flex items-center gap-2">
<span class="material-symbols-outlined text-[#ff6600]">group</span>
<b class="text-black text-lg">Subscriptions</b>
</div>
<div class="flex items-center gap-2" id="subs-tabs">
<a class="subs-tab active" data-tab="following" href="#">
<span class="material-symbols-outlined"
style="font-size:14px;vertical-align:-2px">person_add</span>
Following <span class="subs-count" id="following-count">0</span>
</a>
<a class="subs-tab" data-tab="followers" href="#">
<span class="material-symbols-outlined"
style="font-size:14px;vertical-align:-2px">group</span>
Followers <span class="subs-count" id="followers-count">0</span>
</a>
</div>
</div>
<div id="subs-auth-msg" class="hidden">
<div class="subs-empty">
<span class="material-symbols-outlined">lock</span>
<p>Please log in to view your subscriptions.</p>
<a href="login.html">Log in →</a>
</div>
</div>
<div id="subs-container" class="bg-white rounded border border-gray-200">
</div>
</div>
</main>
<footer
class="bg-[#f6f6ef] dark:bg-stone-900 text-[#ff6600] text-xs text-gray-600 rounded-none border-t-2 border-[#ff6600] mt-4 flat no shadows flex flex-col items-center gap-2 py-8 w-full max-w-[85%] mx-auto"
style="max-width: 100%;">
<div class="flex justify-center w-full mb-2">
<span class="text-[10px] text-gray-500 font-normal">By Khushaank Gupta</span>
</div>
<div class="flex flex-wrap justify-center gap-2 text-gray-600 mb-4">
<a class="hover:underline text-gray-600" href="guidelines.html">Guidelines</a> |
<a class="hover:underline text-gray-600" href="faq.html">FAQ</a> |
<a class="hover:underline text-gray-600" href="lists.html">Lists</a> |
<a class="hover:underline text-gray-600" href="api.html">API</a> |
<a class="hover:underline text-gray-600" href="security.html">Security</a> |
<a class="hover:underline text-gray-600" href="legal.html">Legal</a> |
<a class="hover:underline text-gray-600" href="about.html">About</a> |
<a class="hover:underline text-gray-600" href="contact.html">Feedback</a>
</div>
<form id="footer-search-form" class="flex items-center gap-2"
onsubmit="event.preventDefault(); window.location.href='search.html?search='+document.getElementById('footer-search-input').value;">
<span class="text-gray-500 text-xs">Search:</span>
<input type="text" id="footer-search-input"
class="border border-gray-400 px-2 py-0.5 text-xs rounded-sm focus:outline-none focus:border-[#ff6600] text-black w-48">
</form>
</footer>
</div>
<script src="assets/js/exit-interceptor.js"></script>
<script type="module" src="assets/js/subscriptions.js"></script>
<script type="module" src="assets/js/session.js"></script>
</body>
</html>