forked from CodyTseng/jumble
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 2.37 KB
/
Copy pathindex.html
File metadata and controls
50 lines (47 loc) · 2.37 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<!--
Remote images, audio/video, fetches, and relay WebSockets intentionally
remain open for decentralized content. Executable scripts and embedded
frames are restricted to the providers integrated by the application.
-->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; base-uri 'none'; object-src 'none'; script-src 'self' 'wasm-unsafe-eval'; script-src-attr 'none'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: http: https:; media-src 'self' data: blob: http: https:; connect-src 'self' data: blob: http: https: ws: wss:; frame-src http://127.0.0.1:* https://www.youtube.com https://www.youtube-nocookie.com https://platform.twitter.com; font-src 'self' data:; worker-src 'self' blob:; manifest-src 'self'; form-action 'self'"
/>
<title>Jumble</title>
<meta name="description" content="A user-friendly Nostr client for exploring relay feeds" />
<meta
name="keywords"
content="jumble, nostr, web, client, relay, feed, social, pwa, simple, clean"
/>
<meta name="apple-mobile-web-app-title" content="Jumble" />
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
<meta name="theme-color" content="#171717" media="(prefers-color-scheme: dark)" />
<meta name="theme-color" content="#FFFFFF" media="(prefers-color-scheme: light)" />
<meta property="og:url" content="https://jumble.social" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Jumble" />
<meta
property="og:description"
content="A user-friendly Nostr client for exploring relay feeds"
/>
<meta
property="og:image"
content="https://github.com/CodyTseng/jumble/blob/master/resources/og-image.png?raw=true"
/>
</head>
<body>
<noscript
>You need to enable JavaScript to run this app. If you're looking for something on the nostr
network, try replacing everything before the last slash in your URL bar with njump.me or
nostr.at for a view-only nostr interface.</noscript
>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>