2023-08-18 15:11:35 -05:00
|
|
|
<!doctype html>
|
2024-01-03 11:31:14 -06:00
|
|
|
<html lang="en" dir="auto">
|
2023-02-07 17:04:17 -06:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
2023-02-07 17:04:18 -06:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0" />
|
2023-02-07 17:04:18 -06:00
|
|
|
<link rel="stylesheet" href="./src/styles.css" />
|
2023-02-07 17:04:19 -06:00
|
|
|
<title>noStrudel</title>
|
2023-10-17 11:30:42 -05:00
|
|
|
<meta name="description" content="A simple web based nostr client focused on exploring nostr" />
|
2023-02-07 17:04:18 -06:00
|
|
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
|
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
2023-02-07 17:04:19 -06:00
|
|
|
<meta name="theme-color" content="#8DB600" />
|
2023-04-11 16:38:07 -05:00
|
|
|
|
|
|
|
<meta property="og:url" content="https://nostrudel.ninja" />
|
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta property="og:title" content="noStrudel" />
|
2023-10-17 11:30:42 -05:00
|
|
|
<meta property="og:description" content="A simple web based nostr client focused on exploring nostr" />
|
2023-04-11 16:38:07 -05:00
|
|
|
<meta
|
|
|
|
property="og:image"
|
|
|
|
content="https://repository-images.githubusercontent.com/581644549/d5eec580-ba3d-41e8-87db-58c313bf3f45"
|
|
|
|
/>
|
2023-07-02 23:27:16 -05:00
|
|
|
|
2023-12-11 20:37:06 -06:00
|
|
|
<script>
|
|
|
|
window.CACHE_RELAY_ENABLED = false;
|
2024-01-28 21:15:11 +00:00
|
|
|
window.IMAGE_PROXY_PATH = "";
|
2024-04-25 16:59:55 -05:00
|
|
|
window.REQUEST_PROXY = "";
|
|
|
|
window.PROXY_FIRST = false;
|
2023-12-11 20:37:06 -06:00
|
|
|
</script>
|
2023-02-07 17:04:17 -06:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="root"></div>
|
2023-02-07 17:04:18 -06:00
|
|
|
<script type="module" src="./src/index.tsx"></script>
|
2023-02-07 17:04:17 -06:00
|
|
|
</body>
|
|
|
|
</html>
|