-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
36 lines (32 loc) · 1.28 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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>🤮 Disgus</title>
<meta property="description" content="Like Disqus, but Nostier." />
<!-- SHOULD provide a canonical URL -->
<link rel="canonical" href="https://carlitoplatanito.com/demo" />
<!-- CAN provide OpenGraph data to override page defaults -->
<meta property="og:title" content="🤮 Disgus (Disqus but Nostier)" />
<meta property="og:url" content="https://carlitoplatanito.com/demo" />
<meta property="og:image" content="https://avatars.githubusercontent.com/u/137208" />
<!-- MUST provide nostr pubkey for admin/mod and relay -->
<meta property="nostr:pubkey" content="b7c1a5ef7ccf5cfd5976fba251116ed3f3ae3d3ed175a9ce5e3d33a890b4684b" />
<meta property="nostr:relay" content="wss://brb.io" />
<meta property="nostr:relay" content="wss://relay.damus.io" />
<meta property="nostr:relay" content="wss://relay.nostr.bg" />
<style>
body {
background: #000000;
color: #ffffff;
}
</style>
</head>
<body>
<h1>Demo Page</h1>
<div id="disgus"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>