-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow.html
More file actions
111 lines (106 loc) · 6.66 KB
/
Copy pathshow.html
File metadata and controls
111 lines (106 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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
(function () {
try {
var theme = localStorage.getItem('kn-theme') || 'light';
if (theme === 'dark') {
document.documentElement.setAttribute('data-theme', 'dark');
document.documentElement.classList.add('dark');
} else {
document.documentElement.setAttribute('data-theme', 'light');
document.documentElement.classList.remove('dark');
}
} catch (e) { }
})();
</script>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; base-uri 'self'; object-src 'none'; 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 'self' https://www.youtube.com https://www.youtube-nocookie.com https://docs.google.com https://view.officeapps.live.com; form-action 'self'; upgrade-insecure-requests;" />
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin>
<title>Show - K. Notes</title>
<meta name="description"
content="Show K. Notes: A platform for the community to showcase their latest projects, tools, and startups. Get feedback and visibility for your work." />
<meta property="og:type" content="website" />
<meta property="og:title" content="Show - K. Notes" />
<meta property="og:description"
content="Show K. Notes: A platform for the community to showcase their latest projects, tools, and startups. Get feedback and visibility for your work." />
<meta property="og:image" content="assets/img/logo.png" />
<meta property="og:url" content="show" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="Show - K. Notes" />
<meta property="twitter:description"
content="Show K. Notes: A platform for the community to showcase their latest projects, tools, and startups. Get feedback and visibility for your work." />
<meta property="twitter:image" content="assets/img/logo.png" />
<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" />
</head>
<body class="font-body-md text-body-md text-on-surface">
<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 px-2 py-0.5"
style="max-width: 100%;">
<div class="flex items-center gap-1 w-full text-[13px]">
<a href="home" 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">
<a class="hover:underline" href="home">feed</a> |
<a class="hover:underline" href="comments">comments</a> |
<a class="hover:underline" href="ask">ask</a> |
<a class="hover:underline font-bold" href="show">show</a> |
<a class="hover:underline" href="submit">submit</a> |
<a class="hover:underline" href="leaderboard">leaders</a>
</div>
<div class="ml-auto text-black flex items-center gap-4">
<a class="hover:underline text-black" href="login">login</a>
</div>
</div>
</header>
<main class="bg-[#f6f6ef] pt-2 pb-4">
<div class="px-4 py-2 text-[13px] text-gray-700 leading-relaxed border-b border-gray-200 mb-2">
Please read the Show KN <a href="guidelines" class="underline">rules</a> and <a href="faq"
class="underline">tips</a> before posting. You can <a href="submit" class="underline">submit
your own</a>.
</div>
<table class="border-spacing-0 border-collapse">
<tbody>
<tr>
<td colspan="3" class="p-4 text-center">Loading stories...</td>
</tr>
</tbody>
</table>
</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">Guidelines</a> |
<a class="hover:underline text-gray-600" href="faq">FAQ</a> |
<a class="hover:underline text-gray-600" href="lists">Lists</a> |
<a class="hover:underline text-gray-600" href="api">API</a> |
<a class="hover:underline text-gray-600" href="security">Security</a> |
<a class="hover:underline text-gray-600" href="legal">Legal</a> |
<a class="hover:underline text-gray-600" href="about">About</a> |
<a class="hover:underline text-gray-600" href="contact">Feedback</a>
</div>
<form id="footer-search-form" class="flex items-center gap-2"
onsubmit="event.preventDefault(); window.location.href='search?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 defer src="assets/js/exit-interceptor.js"></script>
<script defer src="https://cdn.jsdelivr.net/npm/dompurify/dist/purify.min.js"></script>
<script type="module" src="assets/js/show.js"></script>
<script type="module" src="assets/js/session.js"></script>
</body>
</html>