damus.io

damus.io website
git clone git://jb55.com/damus.io
Log | Files | Refs | README

index.html (1258B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3     <head>
      4         <meta charset="utf-8">
      5         <meta name="viewport" content="width=device-width, initial-scale=1">
      6 
      7         <title>Damus</title>
      8 
      9         <link rel="stylesheet" href="damus.css?v=20">
     10     </head>
     11     <body>
     12 	<section class="header">
     13 		<span class="logo">
     14 			<img src="img/damus-nobg.svg"/>
     15 		</span>
     16 	</section>
     17 	    <div id="view" class="container">
     18 	    </div>
     19 
     20 	    <div style="display: none" id="reply-modal">
     21 	    <div id="reply-modal-content">
     22 		    <span id="reply-top">
     23 			    <a class="close" href="javascript:close_reply()">✕</a>
     24 			    <span class="small-text">
     25 				    Replying to...
     26 			    </span>
     27 		    </span>
     28 
     29 		    <div id="replying-to">
     30 		    </div>
     31 
     32 		    <div>
     33 			    <textarea id="reply-content"></textarea>
     34 		    </div>
     35 
     36 		    <div style="float:right">
     37 			    <button onclick="do_send_reply()" id="reply-button">Reply</button>
     38 		    </div>
     39 	    </div>
     40 	    </div>
     41     <script src="noble-secp256k1.js?v=1"></script>
     42     <script src="bech32.js?v=1"></script>
     43     <script src="nostr.js?v=6"></script>
     44     <script src="damus.js?v=57"></script>
     45     <script>
     46 	// I have to delay loading to wait for nos2x
     47 	const relay = setTimeout(damus_web_init, 100)
     48     </script>
     49     </body>
     50 </html>
     51