-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (70 loc) · 4.24 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
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BTCforPlebs</title>
<!-- Meta Description -->
<meta name="description" content="BTCforPlebs is a resource to help ordinary people learn about Bitcoin. Explore guides, tools, and resources to start your Bitcoin journey.">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="BTCforPlebs">
<meta property="og:description" content="A place to help ordinary people learn about Bitcoin">
<meta property="og:image" content="/images/thumb.jpeg">
<meta property="og:url" content="https://btcforplebs.com">
<meta name="twitter:card" content="summary_large_image">
<!-- favicon -->
<link rel="icon" href="/images/favicon.png" type="image/png">
<!-- scripts -->
<script src="/assets/js/scripts.js" defer></script>
</head>
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" rel="stylesheet">
<body>
<!-- Bitcoin Price Banner -->
<div id="btc-price-banner">Bitcoin price loading...</div>
<div class="container">
<h1>Welcome to BTCforPlebs</h1>
<h3>A place to help ordinary people learn about Bitcoin</h3>
<img src="/images/btcforplebs_profile.gif" alt="Profile Picture" class="profile-picture">
<p>Watch the video below to learn more about this site</p>
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/1031252195?h=c19910fb6b&badge=0&autopause=0&player_id=0&app_id=58479" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write" style="position:absolute;top:0;left:0;width:100%;height:100%;" title="btcforplebs opening video"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
<div class="button-div">
<!-- Buttons -->
<a href="/learn-bitcoin" class="button" class="prefetch">Learn About Bitcoin</a>
<a href="/learn-nostr" class="button" class="prefetch">Learn About Nostr</a>
<button class="button" id="bitcoin-folder-btn" onclick="toggleFolder('folder2', 'bitcoin-folder-btn')">Use Bitcoin <span style="color: #F7931A;">↓</span></button>
<div class="links" id="folder2">
<a href="https://lightning.btcforplebs.com" target="_blank" class="prefetch">Lightning</a>
<a href="https://mempool.btcforplebs.com" target="_blank" class="prefetch">Mempool</a>
<a href="https://price.btcforplebs.com" target="_blank" class="prefetch">Charts</a>
</div>
<button class="button" id="nostr-folder-btn" onclick="toggleFolder('folder1', 'nostr-folder-btn')">Use Nostr <span style="color: #F7931A;">↓</span></button>
<div class="links" id="folder1">
<a href="https://nostr.btcforplebs.com" target="_blank" class="prefetch">Nostr Client</a>
<a href="https://nostrapps.com" target="_blank">More Nostr Apps</a>
</div>
<a href="https://btcforplebs.com/live" class="button" target="_blank" class="prefetch">WATCH LIVE</a>
<!-- Social Links Section -->
<div class="social-icons">
<a href="https://nostrudel.ninja/#/u/npub1w4rz7n0vunaau499xh86p84s6v5mmgys48p0nmttt7w36takc9dsf4382j" target="_blank" title="Nostr" class="prefetch">
<i class="fa-solid fa-link"></i>
</a>
<a href="https://youtube.com/@btcforplebs" target="_blank" title="YouTube" class="prefetch">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="https://x.com/btcforplebs" target="_blank" title="X" class="prefetch">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="[email protected]" target="_blank" title="Email" class="prefetch">
<i class="fa-solid fa-envelope"></i>
<a href="https://github.com/btcforplebs/BTCforPlebs.com" target="_blank" title="GitHub" class="prefetch">
<i class="fa-solid fa-github"></i>
</a>
</div>
<div class="last-update">
<small id="last-updated-text"></small>
</div>
</div>
</div>
<div id="footer"></div>
</body>
</html>