-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (119 loc) · 6.09 KB
/
index.html
File metadata and controls
138 lines (119 loc) · 6.09 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bitcoin Wallet Tutorials</title>
<!-- Favicon for all browsers and devices -->
<link rel="icon" type="image/png" sizes="32x32" href="favicon.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon.png">
<link rel="shortcut icon" href="favicon.png">
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" sizes="180x180" href="favicon.png">
<!-- Android Chrome -->
<link rel="icon" type="image/png" sizes="192x192" href="favicon.png">
<link rel="icon" type="image/png" sizes="512x512" href="favicon.png">
<!-- Web App Manifest -->
<link rel="manifest" href="site.webmanifest">
<!-- Theme Color -->
<meta name="theme-color" content="#f7931a">
<meta name="msapplication-TileColor" content="#f7931a">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<div class="header-content" id="header-banner">
<span class="header-icon">🧭</span>
<h1 class="header-title">bitcointutorials.org</h1>
<span class="header-icon">🔦</span>
</div>
</header>
<main>
<div class="main-container">
<!-- LEFT SIDEBAR WITH TAGS -->
<aside class="tags-sidebar">
<div class="tag-categories" id="tag-categories">
<!-- Categories and tags will be populated here by JavaScript -->
</div>
</aside>
<!-- MAIN CONTENT AREA -->
<div class="content-area">
<!-- STICKY HEADER CONTAINER -->
<div class="sticky-header">
<!-- UNIFIED CONTROLS WITH SEARCH -->
<div class="controls">
<div class="search-controls">
<div class="search-input-container">
<input type="search" id="search-input" placeholder="Search for tags or creators..." autocomplete="off">
<div class="search-icon">🔍</div>
<div class="clear-search" id="clear-search">×</div>
</div>
<div class="search-suggestions" id="search-suggestions"></div>
</div>
<div class="sort-controls">
<label for="sort-by">Sort by:</label>
<select id="sort-by">
<option value="date">Date</option>
<option value="creator">Creator</option>
<option value="title">Title</option>
</select>
<button id="sort-order">↓ Desc</button>
</div>
<div class="favorites-controls">
<button id="show-favorites-btn">🔖 Show Favorites</button>
<button id="clear-favorites-btn">🗑️ Clear All Favorites</button>
</div>
</div>
<!-- VIDEO COUNT AND BITCOIN DATA -->
<div class="info-bar">
<div class="video-count" id="video-count">
<span id="video-count-number">0</span> videos available
</div>
<div class="bitcoin-price" id="bitcoin-price">
<span class="bitcoin-symbol">₿</span>
$<span id="price-value">Loading...</span>
</div>
<div class="bitcoin-block" id="bitcoin-block">
Block: <span id="block-height">Loading...</span>
</div>
</div>
</div>
<!-- ACTIVE FILTERS DISPLAY -->
<div class="active-filters" id="active-filters"></div>
<div id="video-grid" class="video-grid">
<!-- Videos will be populated here by JavaScript -->
</div>
</div>
</div>
</main>
<footer class="site-footer">
<div class="footer-content">
<p><strong>🧭 About</strong><br>
bitcointutorials.org gathers practical, step-by-step guides for using Bitcoin wallets, nodes, and privacy tools — all sourced from trusted public creators. The goal is to make learning Bitcoin simple, hands-on, and approachable.</p>
<p><strong>🤝 Contribute</strong><br>
This site is open-source and community-built. If you notice a missing tutorial or want to share your own, you can
<a href="https://github.com/vake21/bitcointutorials.org" target="_blank" rel="noopener noreferrer">contribute on GitHub</a>.
</p>
<p>
All linked videos, brand names, icons, and logos referencing external projects, companies, or creators are the trademarks, copyrights, or property of their respective owners. They are used on this site strictly for <strong>informational and identification purposes</strong> under fair use, to help visitors recognize and locate relevant educational materials.
bitcointutorials.org has <strong>no affiliation, endorsement, or partnership</strong> with any third-party entity represented.
This site is entirely independent and non-commercial.
</p>
</div>
</footer>
<!-- Video Modal -->
<div id="video-modal" class="video-modal">
<div class="video-modal-content">
<span class="video-modal-close">×</span>
<div class="video-modal-header">
<h3 id="video-modal-title">Video Title</h3>
<p id="video-modal-creator">by Creator</p>
</div>
<div class="video-container">
<iframe id="video-iframe" src="" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>