-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
44 lines (36 loc) · 1.48 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
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<!-- Configure with your npub/nprofile -->
<meta name="author" value="replace_with_your_npub" />
<!-- Personalize your relays list -->
<meta name="relays" value="wss://nos.lol, wss://relay.damus.io, wss://relay.nostr.band, wss://nostr.wine" />
<!-- Show top notes with images, use a even value, zero to disable -->
<meta name="top-notes" value="2" />
<!-- Show short notes as carousel (value 'carousel') or in the main feed (value 'main'), empty to disable -->
<meta name="short-notes" value="carousel" />
<!-- Show short notes with X minimum characters for the 'short-notes' setting, zero to disable -->
<meta name="short-notes-min-chars" value="800" />
<!-- Size in characters of the short notes preview in the feed, zero to display full content -->
<meta name="short-notes-summary-max-chars" value="400" />
<!-- Enable navigation by topics (tags), empty to disable -->
<meta name="topics" value="" />
<!-- Enable comments, 'yes' to enable -->
<meta name="comments" value="yes" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
</head>
<body>
<div id="app"></div>
<script>
window.wnjParams = {
position: 'bottom',
accent: 'neutral',
startHidden: true,
compactMode: true,
};
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>