-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiscover.html
More file actions
1010 lines (897 loc) · 34.6 KB
/
discover.html
File metadata and controls
1010 lines (897 loc) · 34.6 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="en-GB">
<!--Massively by HTML5 UP | html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)-->
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3KX9VK5CCH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-3KX9VK5CCH');
</script>
<!-- JSON -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "OFiDCrypt",
"url": "https://www.ofidcrypt.com",
"logo": [
"https://www.ofidcrypt.com/assets/images/ofid-logo-saturn01.png",
"https://www.ofidcrypt.com/assets/images/webp/bg-ofid-giddys.webp"
],
"sameAs": [
"https://x.com/OFiDCrypt",
"https://x.com/Giddys_CA",
"https://youtube.com/@OFiDCrypt",
"https://www.tiktok.com/@Giddys_CA",
"https://www.facebook.com/OFiDCrypt",
"https://linkedin.com/company/OFiDCrypt",
"https://www.instagram.com/OFiDCrypt"
]
}
</script>
<!-- Meta Description (for SEO) -->
<title>OFiDCrypt Articles | Latest News, Updates & Insights</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="Join the vibrant OFiDCrypt community to share knowledge and experiences. Connect, learn, and engage with us!">
<meta name="keywords"
content="cryptocurrency, OFiD, OFiD community, OFiD Crypt, blockchain, digital assets, crypto community">
<meta name="author" content="Tokin">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="OFiDCrypt Articles | Latest News, Updates & Insights">
<meta property="og:description"
content="Join the vibrant OFiDCrypt community to share knowledge and experiences. Connect, learn, and engage with us!">
<meta property="og:image" content="https://www.ofidcrypt.com/assets/images/webp/bg-community-lowres.webp">
<meta property="og:url" content="https://www.ofidcrypt.com/discover">
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="OFiDCrypt Articles | Latest News, Updates & Insights">
<meta name="twitter:description"
content="Join the vibrant OFiDCrypt community to share knowledge and experiences. Connect, learn, and engage with us!">
<meta name="twitter:image" content="https://www.ofidcrypt.com/assets/images/webp/bg-community-lowres.webp">
<meta name="twitter:url" content="https://www.ofidcrypt.com/discover">
<!-- Default ICO file with multiple sizes -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<!-- Specific PNG sizes for modern browsers -->
<link rel="icon" type="image/png" sizes="1280x1280" href="/favicon.png">
<!-- Default Apple-Touch-Icon sizes -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<!-- Canonical Preferred URL -->
<link rel="canonical" href="https://www.ofidcrypt.com/discover">
<!-- Stylesheets -->
<link rel="stylesheet" href="/assets/css/main.css">
<noscript>
<link rel="stylesheet" href="/assets/css/noscript.css">
</noscript>
<!-- JavaScript Libraries -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<!-- Meta Language -->
<meta http-equiv='content-language' content='en-gb'>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper" class="fade-in">
<!-- Header Subpage-->
<header class="header-subpage">
<a href="/index.html">
<img src="/assets/images/ofid-logo-saturn01.png" alt="OFiDCrypt Logo" class="logo">
</a>
</header>
<!-- Your Dark Mode Toggle Button -->
<a href="#darkModePanel" id="darkModeToggle" class="alt">
<i class="fas fa-sun"></i>
</a>
<!-- Nav -->
<nav id="nav">
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="ofidtales.html">Giddy's TV & Toys</a></li>
<li><a href="explore.html">Wallets & Apps</a></li>
<li><a href="bouncyball.html">Tokens</a></li>
<li><a href="cashlinks.html">Digital Gifts</a></li>
</ul>
<!-- Social Brands (Custom) -->
<ul class="icons top-icons">
<li class="top-toggle">
<a href="#" aria-label="Dark-Light Desktop Toggle Button">
<img src="/assets/images/darklight-toggle01.svg" alt="Dark-Light Desktop Toggle Button"
class="custom-site-icon">
</a>
</li>
<li class="top-hvr">
<a href="https://www.ofidcrypt.ca" aria-label="Hvr">
<img src="/assets/images/hvr-logo01.svg" alt="Hvr Logo" class="custom-site-icon">
</a>
</li>
<!-- Social Brands (Standard) -->
</ul>
<ul class="icons">
<li><a href="https://x.com/OFiDCrypt" class="icon brands fa-x-twitter"><span class="label">X</span></a>
</li>
<li><a href="https://youtube.com/@OFiDCrypt" class="icon brands fa-youtube"><span
class="label">YouTube</span></a>
</li>
<li><a href="https://www.tiktok.com/@Giddys_CA" class="icon brands alt fa-tiktok"><span
class="label">TikTok</span></a></li>
<li><a href="https://www.facebook.com/OFiDCrypt" class="icon brands alt fa-facebook-f"><span
class="label">Facebook</span></a></li>
<li><a href="https://linkedin.com/company/OFiDCrypt" class="icon brands alt fa-linkedin"><span
class="label">LinkedIn</span></a></li>
</ul>
<!-- Footer Links -->
<ul class="footer-links">
<li class="footer-info-link">
<a href="#copyright">Docs | About | Partners | Compliance</a>
</li>
</ul>
</nav>
<!-- Main - FIXED: Only ONE #main with clean nesting -->
<div id="main">
<!-- Scrolling Ad Banner -->
<div id="expb-ball" class="ad-banner-wrapper">
<div class="ad-scroll-container">
<a href="https://shop.ledger.com/pages/ledger-nano-s-plus/?r=aa8d4fce2d9a&tracker=ofid_banner_index"
class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/ledger-nano-s-plus.png" alt="Ad Banner 1"
style="max-width: 100%; height: auto;">
</a>
<a href="https://kraken.pxf.io/xLox1A" class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/kraken-banner-01.PNG" alt="Ad Banner 2"
style="max-width: 100%; height: auto;">
</a>
<a href="https://freeproducer.ca/" class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/banner-free-producer.PNG" alt="Ad Banner 3"
style="max-width: 100%; height: auto;">
</a>
<a href="/bouncyball.html#buy-expb" class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/expb-banner-01.png" alt="Ad Banner 4"
style="max-width: 100%; height: auto;">
</a>
<a href="https://t.co/gQBLmw20Qp" class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/dobby-banner-01.png" alt="Ad Banner 5"
style="max-width: 100%; height: auto;">
</a>
</div>
</div>
<!-- Section Title: News & Press -->
<article class="post" id="news">
<header class="major">
<!-- Smaller Sub-Heading B-W -->
<h1 class="center-aligned header-tight classy-font">
<span class="smaller-heading-bw">e𝕏P Web3™ Updates & Insights</span>
</h1>
<!-- Status Message -->
<div id="statusMessage" class="status-message">
<div class="status-inner">
<button id="statusClose" class="status-close">×</button>
<p class="status-text">
Welcome! We're new — and Giddy’s Shop is in development. Meanwhile, watch our
<a href="/ofidtales.html#giddys-tv" class="status-link">animated adventures</a> and meet
Giddy!
We encourage you to read our
<a href="/discover.html#article-featured" class="status-link">Solana
article</a>
for a sneak peek at the future of money — thanks for your patience!
</p>
<label class="status-optout">
<input type="checkbox" id="statusOptOut">
<span>Do not show again</span>
</label>
</div>
</div>
<h1>Latest <br />News & Articles</h1>
<p><a href="/index.html#home">Home</a> > <b>Published Content</b></p>
<p>
Keep up-to-date with our ongoing social outreach and product development.
We are very active on 𝕏 | Twitter — click the featured posts below to join the conversation!
</p>
<!-- Smaller Sub-Heading B-W -->
<h1 class="center-aligned header-tight classy-font">
<span class="link-smaller-heading-bw">
<a href="#article-featured" class="jump-link">Posts & Press ⤵</a>
</span>
</h1>
</header>
<!-- PRLog: Releases -->
<div class="PR-container" id="PR">
<div class="PR-post video main">
<div class="iframe-wrapper">
<iframe
src="https://www.prlog.org/13097941-giddys-launches-family-safe-product-line-on-amazon-unlocking-discounts-with-bouncy-ball-tokens.html?embed"
frameborder="1"></iframe>
</div>
</div>
</div>
<!-- X Post Discover: Row HEADING -->
<header>
<a href="https://www.ofidcrypt.com/pages/livestream.html#EXP-003">
<h2>Giddy's Shows Up in Canada</h2>
</a>
</header>
<!-- X Post Discover: Row Slot 1 + 2 -->
<div class="x-post-discover-container">
<div class="x-post-discover video main">
<blockquote class="twitter-tweet">
<p lang="en" dir="ltr">🚫 NO AI <a
href="https://twitter.com/search?q=%24PENGU&src=ctag&ref_src=twsrc%5Etfw">$PENGU</a>
of <a href="https://twitter.com/pudgypenguins?ref_src=twsrc%5Etfw">@pudgypenguins</a>
<br><br>There’s NO
BETTER DISPLAY of OFiDCrypt & Giddy’s UNIVERSE potential in Canada than this..
<br><br>Look who’s in
Canadian dollar stores! 🐧<br><br>We built our vision unaware of theirs—this
matters,
because it
preserves our own sense of originality and… <a
href="https://t.co/yVViTonw50">https://t.co/yVViTonw50</a> <a
href="https://t.co/stFhTpXb26">pic.twitter.com/stFhTpXb26</a>
</p>— Tokin 🍁
OFiDCrypt Web3+
Media™ (@OFiDCrypt) <a
href="https://twitter.com/OFiDCrypt/status/1963385390490071539?ref_src=twsrc%5Etfw">September
3,
2025</a>
</blockquote>
</div>
<div class="x-post-discover video main">
<blockquote class="twitter-tweet">
<p lang="en" dir="ltr">AN ALL-IN-ONE OFiD SUMMARY 💡<br>What make’s us who we are?
<br><br>This 3-Section
multi-thread shows EXACTLY what we’ve done—with TRAILERS and LINKS to all in-house
resources! 💫<br><br>1️⃣
<a
href="https://twitter.com/hashtag/MicroEconomies?src=hash&ref_src=twsrc%5Etfw">#MicroEconomies</a>
-
The System<br>2️⃣ <a
href="https://twitter.com/hashtag/BouncyBall?src=hash&ref_src=twsrc%5Etfw">#BouncyBall</a>
- The
Token<br>3️⃣ <a
href="https://twitter.com/hashtag/Giddys?src=hash&ref_src=twsrc%5Etfw">#Giddys</a>
of <a href="https://twitter.com/OFiDTales?ref_src=twsrc%5Etfw">@OFiDTales</a> - The
People’s Bridge to… <a href="https://t.co/kAGrOPSvYQ">pic.twitter.com/kAGrOPSvYQ</a>
</p>— Tokin 🍁 OFiDCrypt Web3+ Media™
(@OFiDCrypt) <a
href="https://twitter.com/OFiDCrypt/status/1957325057132556618?ref_src=twsrc%5Etfw">August
18,
2025</a>
</blockquote>
</div>
</div>
<!-- X Post Discover: Row HEADING -->
<header>
<a href="https://www.ofidcrypt.com/pages/livestream.html#EXP-003">
<h2>Big Giveaways</h2>
</a>
</header>
<!-- X Post Discover: Row Slot 1 + 2 -->
<div class="x-post-discover-container">
<div class="x-post-discover video main">
<blockquote class="twitter-tweet">
<p lang="en" dir="ltr">CHEQUE-OUT! 10M BOUNCY BALL 💸<br>A community initiative to
boost
awareness and
holders!<br><br>That’s your share of $361.08—available to claim if you’re a <a
href="https://twitter.com/search?q=%24STREAM&src=ctag&ref_src=twsrc%5Etfw">$STREAM</a>
STAKER at <a
href="https://twitter.com/streamflow_fi?ref_src=twsrc%5Etfw">@streamflow_fi</a>
🚀<br><br>STAKERS CLAIM HERE👇<a
href="https://t.co/KHLyr0XyHD">https://t.co/KHLyr0XyHD</a><br><br>We’re
not affiliated; we just share cool stuff!… <a
href="https://t.co/hL9EBvoxmr">https://t.co/hL9EBvoxmr</a>
<a href="https://t.co/PL2OlButgK">pic.twitter.com/PL2OlButgK</a>
</p>— Tokin 🍁 OFiDCrypt Web3+
Media™ (@OFiDCrypt) <a
href="https://twitter.com/OFiDCrypt/status/1956418037562909100?ref_src=twsrc%5Etfw">August
15, 2025</a>
</blockquote>
</div>
<div class="x-post-discover video main">
<blockquote class="twitter-tweet">
<p lang="en" dir="ltr">TODAY, we gave away:<br>1 MILLION <a
href="https://twitter.com/hashtag/BOUNCYBALL?src=hash&ref_src=twsrc%5Etfw">#BOUNCYBALL</a>
🎊<br><br>CONGRATS to our TRIVIA WINNERS 🏆<a
href="https://twitter.com/byencrypted?ref_src=twsrc%5Etfw">@byencrypted</a><a
href="https://twitter.com/Esquare777?ref_src=twsrc%5Etfw">@Esquare777</a><a
href="https://twitter.com/Web3_INK?ref_src=twsrc%5Etfw">@Web3_INK</a><a
href="https://twitter.com/SNATOR_001?ref_src=twsrc%5Etfw">@SNATOR_001</a> <a
href="https://twitter.com/SmxFx?ref_src=twsrc%5Etfw">@SmxFx</a><a
href="https://twitter.com/Dev_Dee3?ref_src=twsrc%5Etfw">@Dev_Dee3</a><a
href="https://twitter.com/ZOlokungboye?ref_src=twsrc%5Etfw">@ZOlokungboye</a><a
href="https://twitter.com/Ademoyegun92?ref_src=twsrc%5Etfw">@Ademoyegun92</a><a
href="https://twitter.com/Egwu80946?ref_src=twsrc%5Etfw">@Egwu80946</a><br><br>TO
BE
CONTINUED.. There
are reasons to claim and HOLD your prize in tokens..<br>
👀<br><br>Thanks again…
<a href="https://t.co/9zxoyPO3NL">https://t.co/9zxoyPO3NL</a> <a
href="https://t.co/v0HD2B8geG">pic.twitter.com/v0HD2B8geG</a>
</p>—
Tokin
🍁
OFiDCrypt Web3+ Media™
(@OFiDCrypt) <a
href="https://twitter.com/OFiDCrypt/status/1952155088778371081?ref_src=twsrc%5Etfw">August
3,
2025</a>
</blockquote>
</div>
</div>
</article>
<!-- Learn Articles Section -->
<section id="article-featured" class="post">
<header class="major">
<!-- Smaller Sub-Heading B-W -->
<h1 class="center-aligned header-tight classy-font">
<span class="link-smaller-heading-bw">
<a href="#news" class="jump-link">Articles Published by OFiDCrypt ⤵</a>
</span>
</h1>
<h2>Learn With Articles</h2>
<p>Check out our <strong>Featured Article</strong> or keep scrolling to explore more content in our
library!</p>
</header>
<!-- Featured Article -->
<article class="post featured">
<a href="https://ofidcrypt.ca/ep-learn-what-is-solana" class="image fit">
<img src="assets/images/article-cover/article_what-is-solana.webp" alt="What is Solana">
</a>
<button class="round-button" onclick="location.href='https://ofidcrypt.ca/ep-learn-what-is-solana'">
View Article →
</button>
</article>
<!-- Pagination Top -->
<header>
<div class="pagination" id="pagination-controls-top">
<a href="#" class="previous">Prev</a>
<a href="#" class="page active" data-page="1">1</a>
<a href="#" class="page" data-page="2">2</a>
<a href="#" class="next">Next</a>
</div>
</header>
<!-- Posts Container -->
<div id="posts-container">
<div id="explore-posts">
<section class="learn-grid">
<!-- Article 1 -->
<article class="learn-card">
<header>
<span class="card-smaller-heading-bw">Blockchain Education</span>
<h2><a href="https://ofidcrypt.ca/article-a-beginners-intro-to-cryptocurrency">A
Beginners Introduction<br>to Crypto</a></h2>
</header>
<a href="https://ofidcrypt.ca/article-a-beginners-intro-to-cryptocurrency"
class="image fit">
<img src="assets/images/article-cover-01-beginners.PNG"
alt="A Beginners Introduction to Cryptocurrency">
</a>
<p>Learning the absolute basics from someone other than huge corporations can remove
bias. It is important to our brand that we provide the necessary knowledge for
people to make their own decisions!</p>
<ul class="actions special">
<li><a href="https://ofidcrypt.ca/article-a-beginners-intro-to-cryptocurrency"
class="button">View Article →</a></li>
</ul>
</article>
<!-- Article 2 -->
<article class="learn-card">
<header>
<span class="card-smaller-heading-bw">Blockchain Education</span>
<h2><a href="https://ofidcrypt.ca/exp-learntm-the-risks-of-meme-coins">The Risks
of<br /> Meme Coins</a></h2>
</header>
<a href="https://ofidcrypt.ca/exp-learntm-the-risks-of-meme-coins" class="image fit">
<img src="assets/images/article-cover-02-memecoin.jpg"
alt="The Risks of Meme Coins">
</a>
<p>Many investment opportunities can exist in crypto... The trick is knowing what to
look for to spot a project’s intent.</p>
<ul class="actions special">
<li><a href="https://ofidcrypt.ca/exp-learntm-the-risks-of-meme-coins"
class="button">View Article →</a></li>
</ul>
</article>
<!-- Article 3 -->
<article class="learn-card">
<header>
<span class="card-smaller-heading-bw">Blockchain Education</span>
<h2><a
href="https://ofidcrypt.ca/ep-learntm-crypto-101-fundamentals-breaking-barriers">Crypto
101: <br />Fundamentals</a></h2>
</header>
<a href="https://ofidcrypt.ca/ep-learntm-crypto-101-fundamentals-breaking-barriers"
class="image fit">
<img src="assets/images/article-cover-03-crypto101.jpg"
alt="Crypto 101: Fundamentals">
</a>
<p>In the Crypto 101 Series, learn about what keeps people cautious about crypto...</p>
<ul class="actions special">
<li><a href="https://ofidcrypt.ca/ep-learntm-crypto-101-fundamentals-breaking-barriers"
class="button">View Article →</a></li>
</ul>
</article>
<!-- Article 4 -->
<article class="learn-card">
<header>
<span class="card-smaller-heading-bw">Blockchain Education</span>
<h2><a href="https://ofidcrypt.ca/why-crypto-prices-go-up-and-why-its-not-magic">Why
Crypto Prices Go Up, and Why It's Not Magic</a></h2>
</header>
<a href="https://ofidcrypt.ca/why-crypto-prices-go-up-and-why-its-not-magic"
class="image fit">
<img src="assets/images/article-cover-06.jpg" alt="Why Crypto Prices Go Up">
</a>
<p>Learn about price movements, how they reflect the redistribution of money...</p>
<ul class="actions special">
<li><a href="https://ofidcrypt.ca/why-crypto-prices-go-up-and-why-its-not-magic"
class="button">View Article →</a></li>
</ul>
</article>
<!-- Article 5 -->
<article class="learn-card">
<header>
<span class="card-smaller-heading-bw">Blockchain Education</span>
<h2><a href="https://ofidcrypt.ca/ep-learn-what-is-solana">What is Solana,<br /> SPL
& Solana Tokens?</a></h2>
</header>
<a href="https://ofidcrypt.ca/ep-learn-what-is-solana" class="image fit">
<img src="assets/images/article-cover/article_what-is-solana.webp"
alt="What is Solana" />
</a>
<p>Get an insight into how tokens move from one place or person to another on Solana
SPL!</p>
<ul class="actions special">
<li><a href="https://ofidcrypt.ca/ep-learn-what-is-solana" class="button">View
Article →</a></li>
</ul>
</article>
<!-- Article 6 -->
<article class="learn-card">
<header>
<span class="card-smaller-heading-bw">Stay Tuned!</span>
<h2><a href="https://www.ofidcrypt.com/explore#article-featured">More Articles<br />
Coming soon</a></h2>
</header>
<a href="https://www.ofidcrypt.com/explore#article-featured" class="image fit">
<img src="assets/images/article-cover-coming-soon.PNG" alt="" />
</a>
<p>"Exploring additional topics brings even more insights and perspectives..."</p>
<ul class="actions special">
<li><a href="https://www.ofidcrypt.com/discover#article-featured" class="button">See
Featured →</a></li>
</ul>
</article>
</section>
</div>
</div>
<!-- Pagination Bottom -->
<footer>
<div class="pagination">
<a href="#" class="previous">Prev</a>
<a href="#" class="page active" data-page="1">1</a>
<a href="#" class="page" data-page="2">2</a>
<a href="#" class="next">Next</a>
</div>
</footer>
</section>
<style>
/* Learn Articles Grid */
.learn-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2em;
margin: 2em 0;
justify-content: center;
align-items: stretch;
}
.learn-card {
background: var(--card-bg, #fff);
border-radius: 1em;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 1.5em;
display: flex;
flex-direction: column;
text-align: center;
border: 1px solid var(--posts-border-color, #ddd);
transition: transform 0.2s ease, box-shadow 0.2s ease;
height: 100%;
min-height: 480px;
}
.learn-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.learn-card .image.fit {
margin-bottom: 1.25em;
}
.learn-card img {
width: 100%;
height: auto;
border-radius: 0.75em;
display: block;
}
.learn-card header {
margin-bottom: 0.75em;
}
/* Title Styles */
.learn-card h2 {
margin: 0.6em 0 0.7em 0;
font-size: 1.35rem;
line-height: 1.3;
font-weight: 600;
}
.learn-card h2 a {
font-size: inherit;
line-height: inherit;
color: inherit;
text-decoration: none;
}
/* Bigger titles on smaller screens */
@media (max-width: 1679px) {
.learn-card h2,
.learn-card h2 a {
font-size: 1.75rem;
}
}
/* Paragraph */
.learn-card p {
flex-grow: 1;
margin-bottom: 1.5em;
text-align: left;
margin-top: 0;
}
/* ==================== BUTTON STYLES (Adapted from Giddy's) ==================== */
.learn-card .actions.special {
margin-top: auto !important;
padding-top: 1.2em;
width: 100%;
list-style: none;
margin-bottom: 0;
}
.learn-card .actions.special li {
width: 100%;
}
.learn-card .button {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 54px;
padding: 0.75em 1.6em;
/* Font styles copied from Giddy's button */
font: inherit;
text-transform: none;
font-size: 0.9em;
font-weight: 500;
line-height: 1.2;
/* Button colors & border */
background: rgba(168, 85, 247, 0.1);
color: var(--accent, #a855f7);
border: 1px solid rgba(168, 85, 247, 0.25);
/* Thinner / softer border */
border-radius: 2em;
transition: all 0.2s ease;
text-decoration: none;
}
.learn-card .button:hover {
background: rgba(168, 85, 247, 0.25);
border-color: var(--accent, #a855f7);
transform: translateY(-1px);
}
/* Dark mode button */
body.dark-mode .learn-card .button {
font: inherit;
text-transform: none;
font-size: 0.9em;
background: rgba(168, 85, 247, 0.15);
color: #c084fc;
/* Lighter purple for dark mode */
border: 1px solid rgba(168, 85, 247, 0.35);
box-shadow: none;
}
body.dark-mode .learn-card .button:hover {
background: rgba(168, 85, 247, 0.32);
border-color: #c084fc;
}
/* Card dark mode */
body.dark-mode .learn-card {
background: #1a1a2e;
color: #e2e8f0;
border-color: #334155;
}
body.dark-mode .learn-card:hover {
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
/* Fade transitions */
#posts-container {
transition: opacity 0.4s ease;
}
#posts-container.fade-out {
opacity: 0;
}
#posts-container.fade-in {
opacity: 1;
}
/* Responsive */
@media (max-width: 480px) {
.learn-grid {
grid-template-columns: 1fr;
gap: 1.5em;
}
.learn-card {
min-height: 420px;
}
}
@media (min-width: 481px) and (max-width: 980px) {
.learn-grid {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
}
</style>
<script>
// Pagination Explore - ONLY filename fixed (everything else untouched)
document.addEventListener("DOMContentLoaded", function () {
const container = document.getElementById('posts-container');
let currentPage = '1';
let totalPages = 2;
let isTransitioning = false;
function loadPage(pageNumber, shouldScroll) {
let url;
if (pageNumber === '1') {
url = 'discover.html'; // ← ONLY CHANGE: was 'explore.html'
} else {
url = `posts-page${pageNumber}.html`;
}
container.classList.add('fade-out');
isTransitioning = true;
fetch(url).then(response => response.text()).then(data => {
const parser = new DOMParser();
const doc = parser.parseFromString(data, 'text/html');
let newContent = '';
if (pageNumber === '1') {
newContent = doc.getElementById('explore-posts').querySelector('section.learn-grid').outerHTML;
} else {
const pageContent = doc.getElementById(`posts-page${pageNumber}-posts`);
if (pageContent) {
newContent = pageContent.innerHTML;
} else {
newContent = doc.body.innerHTML || doc.querySelector('.posts').innerHTML;
}
}
setTimeout(() => {
container.innerHTML = `<div id="explore-posts">${newContent}</div>`;
container.classList.remove('fade-out');
container.classList.add('fade-in');
setTimeout(() => {
container.classList.remove('fade-in');
isTransitioning = false;
if (shouldScroll) {
scrollToFeaturedPost();
}
updatePagination(pageNumber);
}, 500);
}, 500);
}).catch(error => {
console.error('Error loading page:', error);
container.classList.remove('fade-out');
isTransitioning = false;
});
}
function scrollToFeaturedPost() {
const featuredPost = document.querySelector('.post.featured');
if (featuredPost) {
const featuredEnd = featuredPost.getBoundingClientRect().bottom + window.scrollY;
window.scrollTo({ top: featuredEnd, behavior: 'smooth' });
}
}
function updatePagination(pageNumber) {
document.querySelectorAll('.pagination .page').forEach(pageLink => {
pageLink.classList.remove('active');
if (pageLink.getAttribute('data-page') === pageNumber) {
pageLink.classList.add('active');
}
});
currentPage = pageNumber;
}
document.querySelectorAll('.pagination .page').forEach(pageLink => {
pageLink.addEventListener('click', function (event) {
event.preventDefault();
const pageNumber = this.getAttribute('data-page');
loadPage(pageNumber, true);
});
});
document.querySelectorAll('.pagination .previous').forEach(prevLink => {
prevLink.addEventListener('click', function (event) {
event.preventDefault();
if (currentPage > '1') {
loadPage((parseInt(currentPage) - 1).toString(), true);
}
});
});
document.querySelectorAll('.pagination .next').forEach(nextLink => {
nextLink.addEventListener('click', function (event) {
event.preventDefault();
if (parseInt(currentPage) < totalPages) {
loadPage((parseInt(currentPage) + 1).toString(), true);
}
});
});
loadPage('1', false);
});
</script>
</div> <!-- End of single #main -->
<!-- Bottom Nav -->
<nav class="bottom-nav">
<div class="nav-item" onclick="window.location.href='https://t.me/oneGIDDY'">
<i class="fas fa-comment-dots"></i>Ask Giddy
</div>
<div class="nav-item" onclick="window.location.href='/kincommunity.html'">
<i class="fas fa-users"></i>Connect
</div>
<div class="nav-item" onclick="window.location.href='/game/app-play.html'">
<i class="fas fa-gamepad"></i>Play Blinko!
</div>
<div class="nav-item" onclick="window.location.href='/bouncyball.html'">
<i class="fas fa-wallet"></i>Tokens
</div>
<div class="nav-item" id="navPanelTrigger">
<i class="fas fa-bars"></i> Menu
</div>
</nav>
<!-- Footer -->
<footer id="footer">
<section>
<form method="post" action="https://formspree.io/f/mzzbzojq" onsubmit="return verifyRecaptcha()">
<h2 class="centered-heading">Contact Us</h2>
<div class="fields">
<div class="field">
<label for="name">Name</label>
<input type="text" name="name" id="name" required>
</div>
<div class="field">
<label for="email">Email</label>
<input type="email" name="email" id="email" required>
</div>
<div class="field">
<label for="message">Message</label>
<textarea name="message" id="message" rows="3" required></textarea>
</div>
</div>
<div class="g-recaptcha" data-sitekey="6LeHSWsqAAAAABWNk60dgafwA26pWZiQoNi8ZUTa"></div>
<ul class="actions">
<li><input type="submit" value="Send Message"></li>
</ul>
</form>
<script>
function verifyRecaptcha() {
var response = grecaptcha.getResponse();
if (response.length == 0) {
alert("Please complete the reCAPTCHA.");
return false;
} else {
return true;
}
}
</script>
</section>
<!-- Footer Social Location, Links & Other Contact -->
<section class="split contact">
<section>
<h3>Location</h3>
<p>British Columbia, Canada</p>
</section>
<section>
<h3>Email</h3>
<p><a href="mailto:me@ofidcrypt.com">me@ofidcrypt.com</a></p>
</section>
<section>
<h3>Telegram</h3>
<p><a href="https://t.me/OFiDBall">OFiDCrypt e𝕏P Web3™</a></p>
</section>
<!-- Hvr -->
<section>
<a href="https://www.ofidcrypt.ca" aria-label="Hvr">
<img src="/assets/images/hvr-logo02.svg" alt="Hvr Logo" id="contact-img"
class="custom-site-icon-contact">
</a>
<p><a href="https://www.ofidcrypt.ca">OFiDCrypt.ca</a></p>
</section>
<section>
<ul class="icons alt">
<li><a href="https://x.com/OFiDCrypt" class="icon brands fa-x-twitter"><span
class="label">X</span></a></li>
<li><a href="https://youtube.com/@OFiDCrypt" class="icon brands fa-youtube"><span
class="label">YouTube</span></a></li>
<li><a href="https://www.tiktok.com/@Giddys_CA" class="icon brands alt fa-tiktok"><span
class="label">TikTok</span></a></li>
<li><a href="https://www.facebook.com/OFiDCrypt" class="icon brands alt fa-facebook-f"><span
class="label">Facebook</span></a></li>
<li><a href="https://linkedin.com/company/OFiDCrypt" class="icon brands alt fa-linkedin"><span
class="label">LinkedIn</span></a></li>
</ul>
</section>
</section>
</footer>
<!-- Copyright -->
<div id="copyright">
<ul>
<li><a href="/docs/main.html">Docs</a></li>
<li><a href="/discover.html">News & PR</a></li>
<li><a href="/pages/affiliate.html">Partners</a></li>
<li><a href="/pages/about.html">About</a></li>
</ul>
<ul>
<li>© OF<span class="i">i</span>DCrypt e𝕏P Web3™ 2026</li>
</ul>
<ul>
<li>Design: <a href="https://html5up.net">HTML5 UP</a></li>
</ul>
<ul>
<li><a href="/docs/privacy-policy.html">Privacy</a></li>
</ul>
</div>
<!-- Footer Extended Links Container -->
<div class="footer-extended-container">
<section class="footer-extended">
<h1 class="footer-left-aligned">
<span class="footer-small-heading">Partner Token Projects</span><br />
</h1>
<ul>
<li><a href="kincommunity.html#one-kin">$ONE</a></li>
<li><a href="kincommunity.html#one-kin">$KIN</a></li>
<li><a href="kincommunity.html#token-partners">$DOBBY</a></li>
<li><a href="kincommunity.html#token-partners">$DUNO</a></li>
<li><a href="kincommunity.html#token-partners">$MYLO</a></li>
<li><a href="kincommunity.html#token-partners">$CPT</a></li>
<li><a href="kincommunity.html#token-partners">$SINU</a></li>
</ul>
</section>
<section class="footer-extended">
<h1 class="footer-left-aligned">
<span class="footer-small-heading">Affiliate Partnerships</span><br />
</h1>
<ul>
<li><a href="pages/affiliate.html#kraken">Kraken</a></li>
<li><a href="pages/affiliate.html#ledger">Ledger</a></li>
</ul>
</section>
<section class="footer-extended">
<h1 class="footer-left-aligned">
<span class="footer-small-heading">Tech Collab & Site Partners</span><br />
</h1>
<ul>
<li><a href="pages/kinnected.html">GFDevSoft's Kinnected!</a></li>
<li><a href="pages/affiliate.html#hvr">HVR Technologies</a></li>
</ul>
</section>
<section class="footer-extended">
<h1 class="footer-left-aligned">
<span class="footer-small-heading">Collab Communities</span><br />
</h1>
<ul>
<li><a href="kincommunity.html">ONE Kin</a></li>
<li><a href="https://x.com/_WEB3M_">WEB3M</a></li>
<li><a href="https://x.com/theweb3family">The Web3 Family</a></li>
</ul>
</section>
</div>
<!-- Link to non-critical JavaScript files -->
<script src="/assets/js/jquery.min.js"></script>
<script src="/assets/js/jquery.scrollex.min.js"></script>
<script src="/assets/js/jquery.scrolly.min.js"></script>
<!-- REQUIRED for HTML5UP main.js -->
<script src="/assets/js/browser.min.js"></script>
<script src="/assets/js/breakpoints.min.js"></script>
<script src="/assets/js/util.js"></script>