forked from hydren-crypto/stampchain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
58 lines (44 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/x-icon" href="/images/icon.jpg">
<link rel="apple-touch-icon" href="/images/icon.jpg">
<link rel="icon" type="image/x-icon" href="/images/icon.jpg">
<link rel="apple-touch-icon" href="/images/icon.jpg">
<meta property="og:title" content="BITCOIN STAMPS" />
<meta property="og:description" content="Unprunable UTXO Art, Because Sats Don’t Exist." />
<meta property="og:image" content="/images/stamp.jpg" />
<meta name="title" content="BITCOIN STAMPS"/>
<meta name="description" content="Unprunable UTXO Art, Because Sats Don’t Exist." />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<link rel="stylesheet" type="text/css" media="all" href="style.css" />
<meta charset="UTF-8">
<title>BITCOIN STAMPS</title>
<script src="app.js" defer></script>
</head>
<body>
<div id="menu">
<a href="https://github.com/mikeinspace/stamps/blob/main/BitcoinStamps.md" target="_blank">About</a> | <a href="/minting.html">Minting</a> | <a href="https://t.me/BitcoinStamps" target="_blank">Join us!</a>
</div>
<a href="index.html" class="title-link"><h1>BITCOIN STAMPS</h1></a>
<h2><em>Unprunable UTXO Art, Because Sats Don’t Exist.<br>Introducing <a href="https://stampchain.io/src20/" target="_blank" style="color:white;">SRC-20 Token Spec</a>!</em></h2>
<form id="search-form">
<input type="text" id="search-input" name="search" required placeholder="stamp / creator / tx / cpid">
<button type="submit">Search</button>
</form>
<div id="pagination-container-top">
<button id="first-page-top">First</button>
<button id="prev-page-top">Previous</button>
<button id="next-page-top">Next</button>
<button id="last-page-top">Last</button>
</div>
<div id="data-container"></div>
<div id="pagination-container-bottom">
<button id="first-page-bottom">First</button>
<button id="prev-page-bottom">Previous</button>
<button id="next-page-bottom">Next</button>
<button id="last-page-bottom">Last</button>
</div>
<p id="copyright">© 2023 Bitcoin Stamps</p>
</body>
</html>