-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (106 loc) · 3.52 KB
/
index.html
File metadata and controls
110 lines (106 loc) · 3.52 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="/manifest.json" />
<!-- HTML Meta Tags -->
<title>BTC Inscription Viewer</title>
<meta
name="description"
content="Decode any Bitcoin inscriptions/ordinals by providing transaction hex data, transaction ID, or transacion/ordinal link"
/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://biv.netlify.app/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="BTC Inscription Viewer" />
<meta
property="og:description"
content="Decode any Bitcoin inscriptions/ordinals by providing transaction hex data, transaction ID, or transacion/ordinal link"
/>
<meta property="og:image" content="/promo.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="biv.netlify.app" />
<meta property="twitter:url" content="https://biv.netlify.app/" />
<meta name="twitter:title" content="BTC Inscription Viewer" />
<meta
name="twitter:description"
content="Decode any Bitcoin inscriptions/ordinals by providing transaction hex data, transaction ID, or transacion/ordinal link"
/>
<meta name="twitter:image" content="/promo.png" />
</head>
<body>
<noscript>
This websites works purely client-side and requires JavaScript to
function. Please consider enabling JavaScript to use it. There are no adds
or trackers on the page.
</noscript>
<header>
<h1>
<a href="/"
><img
src="logo.svg"
alt="BTC Inscription Viewer"
width="285"
height="48"
/></a>
</h1>
</header>
<section class="inputs">
<textarea
name="tx"
id="tx"
placeholder="Paste transaction ID, transaction link, or full transaction as hex..."
></textarea>
<fieldset>
<button id="clear">CLEAR</button>
<button id="load" class="primary">LOAD</button>
</fieldset>
</section>
<main>
<header><p id="details"></p></header>
<article id="preview">
<img
id="monkey"
class="svg"
src="watermark.svg"
alt="Monkey"
width="512"
height="512"
/>
</article>
<footer>
<ul id="links" class="links">
<li id="download"></li>
<li id="open"></li>
</ul>
</footer>
<section id="loading" class="loading hidden">
<p>
<img class="spinner" src="spinner.svg" alt="Loading..." />
</p>
</section>
</main>
<footer>
<p><a id="show-info" href="#">About this page</a></p>
</footer>
<section class="info hidden" id="info">
<h2>About this page</h2>
<p>
The website does not provide or store any of the inscriptions. It works
purely client-side in your browser, and decodes the data that
<strong>you</strong>
provide.
</p>
<p>
The website is not responsible for any inappropriate data stored in the
transactions (no more than MS Paint is responsible if you open offensive
images with it).
</p>
<p><a href="#" id="hide-info">close</a></p>
</section>
<script type="module" src="/src/index.ts"></script>
</body>
</html>