forked from stok33/NostrIllustStock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<title>#Sakestr</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="./favicon.svg">
<script src="https://unpkg.com/nostr-tools/lib/nostr.bundle.js"></script>
<script src="main.js"></script>
</head>
<body>
<h1>#Sakestr</h1>
<label for="npubInput">ユーザーの公開鍵:</label><br>
<input class="custom-input" type="text" id="npubInput" placeholder="npub〜"><br>
<label for="relayInput">見たいリレーURL:</label><br>
<input class="custom-input" type="text" id="relayInput" placeholder="wss://〜" value="wss://relay-jp.nostr.wirednet.jp">
<button onclick="searchPosts()">検索!</button>
<div id="alertarea">
<!-- アラート内容-->
</div>
<ul>
<li>公開鍵で指定したアカウントが投稿している「#sakestr」タグつきの投稿を100件まで表示します</li>
<li>githubは<a href=https://github.com/rira224/NostrStock/>こちら</a></li>
<li>最後のnote~はnoteIDです 多くのクライアントで検索欄に貼り付けるとその投稿に飛べます</li>
<li>NIP-36(閲覧注意)対応しています。「content-warning!閲覧するにはクリック」と表示されます</li>
</ul>
<hr>
<div id="profContainer">
<!--kind0からプロフィール表示-->
</div>
<hr>
<div id="resultContainer">
<!-- 検索結果の投稿を表示-->
</div>
</body>
</html>