-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel=icon href="data:,">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>YouTube Playlist Playtime</title>
</head>
<body>
<h1>YouTube Playlist Playtime</h1>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<noscript>
<p>This app requires JavaScript,
since it queries YouTube playlist info from external sites via client-side JavaScript.
</p>
</noscript>
<footer>
Powered by <a href="https://invidious.io">Invidious</a>.<br>
Made with <a href="https://svelte.dev/">Svelte</a>,
<a href="https://vitejs.dev/">Vite</a>,
<a href="https://www.typescriptlang.org">TypeScript</a>,
<a href="https://simplecss.org">Simple.css</a>.<br>
Pair programmed with <a href="https://github.com/features/copilot/">Copilot</a>
and <a href="https://codeium.com">Codeium</a>.<br>
Hosted at <a href="https://pages.cloudflare.com">Cloudflare Pages</a>.<br>
Source code repository hosted at <a href="https://github.com/weakish/youtube-playlist-timer">GitHub</a>.<br>
This site is a member of the <a href="https://512kb.club">512KB Club</a>.
</footer>
</body>
</html>