This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
90 lines (78 loc) · 3.75 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<meta name="theme-color" content="#151515">
<meta name="msapplication-navbutton-color" content="#151515">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>Nostrocket! | a hyper-efficient rocket booster for your project</title>
<meta property="og:title" content="Nostrocket!"/>
<meta property="og:locale" content="en_US"/>
<meta name="description" content="a hyper-efficient rocket booster for your project"/>
<meta property="og:description" content="a hyper-efficient rocket booster for your project"/>
<link rel="canonical" href="https://nostrocket.org/"/>
<meta property="og:url" content="https://nostrocket.org/"/>
<meta property="og:site_name" content="Nostrocket!"/>
<meta property="og:type" content="website"/>
<meta name="twitter:card" content="summary"/>
<meta property="twitter:title" content="Nostrocket!"/>
<link rel="stylesheet" href="comments.css">
<script src="showdown.min.js"></script>
<script src="markdown.js"></script>
<script src="bitcoinjs-lib.js"></script>
<script src="bitcoinjs-message.js"></script>
<script src="verifyBitcoinSignedMessage.js"></script>
<script src="https://unpkg.com/nostr-tools/lib/nostr.bundle.js"></script>
<link rel="stylesheet" href="clock.css">
<link href='https://fonts.googleapis.com/css?family=Ubuntu&subset=cyrillic,latin' rel='stylesheet' type='text/css' />
</head>
<body>
<header>
<div class="headbox">
<a href="/index.html" id="header_image"></a>
</div>
</header>
<div class="headlinks" style="background-color: rgb(2,10,42, 0.4);">
<div class="container">
<div id="l" class="images-center" style="width: 100%"></div>
<script>fetch('/links.md')
.then(response => response.text())
.then((data) => {
document.getElementById("l").replaceChildren(makeItHTML(data))
})</script>
</div>
</div>
<div style="background-color: rgb(22,0,64);padding-top: 14px;"><div class="container">
<div id="w"></div>
<script>fetch('/summary.md')
.then(response => response.text())
.then((data) => {
document.getElementById("w").replaceChildren(makeItHTML(data))
})</script>
<div class="images-center" style="padding-top: 24px;">
<img src="images/rocket.png" style="width: 23%;margin-right: 2%"/><img src="images/equals.png" style="width: 12%;height:12%;margin-right: 3%;margin-top: auto;margin-bottom: auto;"/><img src="images/nostr.png" style="width: 23%;margin-right: 2%"/><img src="images/plus.png" style="width: 12%;height:12%;margin-right: 3%;margin-top: auto;margin-bottom: auto;"/><img src="images/btc.png" style="width: 23%;"/>
</div>
<div style="display: flex;justify-content: center;padding-bottom: 20px;color: #fa7a0b;">Built with Nostr and Bitcoin</div>
</div></div>
<div style="background-color: rgb(119,2,30)"><div class="container">
<div id="y"></div>
<script>fetch('/getstarted.md')
.then(response => response.text())
.then((data) => {
document.getElementById("y").replaceChildren(makeItHTML(data))
})</script>
</div></div>
<div style="background-color: rgb(93,2,110); padding-top: 14px;"><div class="container">
<div id="x"></div>
<script>fetch('/wtf.md')
.then(response => response.text())
.then((data) => {
document.getElementById("x").replaceChildren(makeItHTML(data))
})</script>
</div></div>
<script src="countdown.js"></script>
</body>
</html>