-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
665 lines (633 loc) · 40.8 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AO Libre - MMORPG</title>
<link rel="stylesheet" href="app/bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="app/dist/app.css">
<link rel="stylesheet" href="assets/font/font-awesome.css">
<link href="app/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="app/dist/swiper-bundle.min.css" />
<!-- Favicon and Touch Icons -->
<link rel="shortcut icon" href="assets/images/favicon.png">
<link rel="apple-touch-icon-precomposed" href="assets/images/favicon.png">
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function () {
var u = "//analytics.ao20.com.ar/";
_paq.push(['setTrackerUrl', u + 'matomo.php']);
_paq.push(['setSiteId', '2']);
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
g.type = 'text/javascript'; g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body class="home-2 header-fixed">
<!-- Preloading -->
<div class="preloader">
<div class="icon"></div>
</div>
<!-- end Preloading -->
<!-- Scroll Top -->
<div class="progress-wrap active-progress">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" style="transition: stroke-dashoffset 10ms linear 0s; stroke-dasharray: 307.919, 307.919; stroke-dashoffset: 286.138;"></path>
</svg>
</div>
<!-- end Scroll Top -->
<!-- Header -->
<header id="header_main" class="header">
<div class="container">
<div class="row">
<div class="col-12">
<div class="header__body d-flex justify-content-between">
<div class="header__logo">
<a href="index.html">
<img id="site-logo" src="assets/images/logo.png"
alt="AO Libre" width="217" height="50"
data-retina="assets/images/[email protected]" data-width="217"
data-height="50">
</a>
</div>
<div class="header__right">
<nav id="main-nav" class="main-nav">
<ul id="menu-primary-menu" class="menu">
<li class="menu-item menu-item-has-children">
<a href="/aoclasico/index.html">Descargar</a>
</li>
<li class="menu-item menu-item-has-children">
<a href="https://shop.argentumonline.org">Shop / Merchandising</a>
</li>
<li class="menu-item menu-item-has-children">
<a href="aolb-token-crowdsale.html">$AOLB <br> Pre-Venta</a>
</li>
<li class="menu-item menu-item-has-children">
<a href="nfts.html">ARGENTUMS NFTs</a>
</li>
</ul>
</nav><!-- /#main-nav -->
<ul class="social">
<li><a href="https://www.facebook.com/argentumonlinelibre/"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="https://twitter.com/AOLibre"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://discord.com/invite/f5zp3zbVRj"><i class="fab fa-discord"></i></a></li>
<li><a href="https://www.instagram.com/argentumonlinelibre/"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://www.reddit.com/r/argentumonlineoficial/"><i class="fab fa-reddit"></i></a></li>
<li><a href="https://pin.it/2neqgsy"><i class="fab fa-pinterest"></i></a></li>
<li><a href="https://www.github.com/ao-libre"><i class="fab fa-github"></i></a></li>
</ul>
<div class="mobile-button"><span></span></div><!-- /.mobile-button -->
</div>
</div>
</div>
</div>
</div>
</header>
<!-- end Header -->
<!-- Hero Slider -->
<section class="tf-section hero-slider style-2">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="block-text pt-24 center" >
<h6 class="sub-title mb-6" data-aos="fade-up">We are AO Libre</h6>
<h2 class="title mb-26" data-aos="fade-up"><span style="color:rgb(62, 62, 231)">Argentum </span><span style="color:rgb(196, 13, 13)"> Online</span> <br> <span style="color:rgb(60, 153, 7)"> Libre</span></h2>
<p class="desc mb-53" data-aos="fade-up">AO Libre es un proyecto colaborativo utilizando el open-source como bandera. <br>Todos estan invitados a participar a ser parte de la organizacion del juego dentro del server. <br> Todo nuestros recursos y codigo estan liberados bajo la licencia AGPL y pueden encontrarlos en Github. </p>
<!-- <a href="about.html" class="btn-action style-2" data-aos="fade-up" data-aos-duration="1200" >Get Connected</a> -->
<div class="shape">
<div class="item"><img src="assets/images/items/pjs-transparentes/4.png" alt="Image"></div>
<div class="item"><img src="assets/images/items/pjs-transparentes/5.png" alt="Image"></div>
<div class="item"><img src="assets/images/items/pjs-transparentes/6.png" alt="Image"></div>
<div class="item"><img src="assets/images/items/pjs-transparentes/7.png" alt="Image"></div>
<div class="item"><img src="assets/images/items/pjs-transparentes/8.png" alt="Image"></div>
<div class="item"><img src="assets/images/items/pjs-transparentes/9.png" alt="Image"></div>
<div class="item"><img src="assets/images/items/pjs-transparentes/10.png" alt="Image"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Hero Slider -->
<!-- Speciality -->
<section class="tf-section section-speciality">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="block-text center">
<h5 class="sub-title mb-10" data-aos="fade-up" data-aos-duration="1000">Elige tu propia aventura</h5>
<h6 class="title mb-28" data-aos="fade-up" data-aos-duration="1000">AO Libre tiene su servidor oficial abierto 24/7 Experiencia y oro dificultad: Dificil. <br> Por otra parte te entrega herramientas para poder abrir tu propio server de AO</h6>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xl-3 col-md-6 col-12">
<div class="box-item bg-1" data-aos="fade-up" data-aos-duration="800">
<img src="assets/images/items/pjs-transparentes/11.png" alt="AO Libre Character">
<span class="h5">Jugar</span>
<p>Podes descargarte el juego ya mismo desde <a href="/aoclasico/index.html">aqui</a> y empezar a jugar.</p>
</div>
</div>
<div class="col-xl-3 col-md-6 col-12">
<div class="box-item bg-2 s2" data-aos="fade-up" data-aos-duration="1000">
<img src="assets/images/items/pjs-transparentes/12.png" alt="AO Libre Character">
<span class="h5">Montar tu servidor</span>
<p>¿Queres tu propio server de Argentum Online? Es muy facil, aca te decimos como, solo 5 minutos. <a target="_blank" href="https://www.reddit.com/r/argentumonlineoficial/comments/9dow3q/como_montar_mi_propio_servidor/">Click Aqui</a></p>
</div>
</div>
<div class="col-xl-3 col-md-6 col-12" data-aos="fade-up" data-aos-duration="1200">
<div class="box-item bg-1 s2-m">
<img src="assets/images/items/pjs-transparentes/13.png" alt="AO Libre Character">
<span class="h5">Crea tu mundo</span>
<p>¿Queres crear mapas para tu servidor de Argentum Online? World Editor es la herramienta que necesitas. Mira este <a target="_blank" href="https://www.youtube.com/watch?v=EvymQYQICsc">tutorial</a></p>
<p><a href="https://github.com/ao-libre/ao-autoupdate/releases/download/v1.7/aolibre-installer-v1.7.exe">Descargar Worldeditor</a></p>
</div>
</div>
<div class="col-xl-3 col-md-6 col-12" data-aos="fade-up" data-aos-duration="1400">
<div class="box-item bg-2 s2">
<img src="assets/images/items/pjs-transparentes/14.png" alt="AO Libre Character">
<span class="h5">Agregar nuevos items</span>
<p>¿Queres agregar nuevos items al juego ? En este <a target="_blank" href="https://www.youtube.com/watch?v=p8Vf2jcJUFc">tutorial</a> te mostramos como.</p>
</div>
</div>
</div>
</div>
</section>
<!-- end Speciality -->
<!-- About Us -->
<section class="tf-section section-about">
<div class="container">
<div class="row reverse">
<div class="col-xl-7 col-md-12">
<div class="group-image">
<div class="left">
<div class="item"><img src="aoclasico/assets/images/nfts-example.gif" alt="ARGENTUMS NFTs"></div>
</div>
<div class="right">
<div class="item"><img src="aoclasico/assets/images/ao-libre-aolb-logo.png" alt="$AOLB Logo"></div>
<div class="item"><img src="assets/images/items/pjs-transparentes/19.png" alt="AO Libre"></div>
</div>
</div>
</div>
<div class="col-xl-5 col-md-12">
<div class="block-text pt-12">
<h5 class="sub-title mb-10" data-aos="fade-up" data-aos-duration="1000">Crypto space</h5>
<h3 class="title mb-58" data-aos="fade-up" data-aos-duration="1000">₿lockchain Development</h3>
<p class="fs-18 mb-33" data-aos="fade-up" data-aos-duration="1000">ARGENTUMS NFTs Collection is the first step in our mission to help Argentum Online thrive thanks to the blockchain technology. We are developing a Metaverse around all the servers that use AO Libre, so your NFTs will be re-usable between servers.</p>
<p class="fs-18 line-h17 mb-41" data-aos="fade-up" data-aos-duration="1000">On top of that, we’re creating the $AOLB BEP-20 token that’ll serve as the backbone of the platform. We are on a Crowdsale/Pre-Sale of the token which represents just the 5% of the Total Cap in others words this is the early-bird stage. </p>
<a href="aolb-token-crowdsale.html" class="btn-action style-2" data-aos="fade-up" data-aos-duration="1200">Buy $AOLB</a>
<a href="nfts.html" class="btn-action style-2" data-aos="fade-up" data-aos-duration="1200">ARGENTUMS NFT more info</a>
<a href="https://whitepaper.argentumonline.org" class="btn-action style-2" data-aos="fade-up" data-aos-duration="1200">Whitepaper</a>
</div>
</div>
</div>
</div>
</section>
<!-- end About Us -->
<!-- Montono -->
<section class="tf-section montono">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="block-text center">
<h1 class="heading-bg" data-aos="fade-down" data-aos-duration="1000"><span>The Game</span></h1>
<h5 class="sub-title mb-10" data-aos="fade-up" data-aos-duration="1000">Screenshots</h5>
<h3 class="title mb-28" data-aos="fade-up" data-aos-duration="1000">Check real images of our <br> MMORPG</h3>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row mt-52">
<div class="col-xl-4 col-md-6">
<div class="image-box" data-aos="fade-up" data-aos-duration="1000">
<a href="assets/images/screenshots/1.png"><img src="assets/images/screenshots/1.png" alt="Screenshot"></a>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="image-box" data-aos="fade-up" data-aos-duration="1000">
<a href="assets/images/screenshots/2.png"><img src="assets/images/screenshots/2.png" alt="Screenshot"></a>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="image-box" data-aos="fade-up" data-aos-duration="1000">
<a href="assets/images/screenshots/3.png"><img src="assets/images/screenshots/3.png" alt="Screenshot"></a>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="image-box" data-aos="fade-up" data-aos-duration="1000">
<a href="assets/images/screenshots/4.png"><img src="assets/images/screenshots/4.png" alt="Screenshot"></a>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="image-box" data-aos="fade-up" data-aos-duration="1000">
<a href="assets/images/screenshots/5.png"><img src="assets/images/screenshots/5.png" alt="Screenshot"></a>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="image-box" data-aos="fade-up" data-aos-duration="1000">
<a href="assets/images/screenshots/6.png"><img src="assets/images/screenshots/6.png" alt="Screenshot"></a>
</div>
</div>
</div>
</div>
</section>
<!-- end Montono -->
<!-- Visions -->
<section class="tf-section visions">
<div class="container">
<div class="row reverse">
<div class="col-xl-7 col-md-12">
<div class="group-image" data-aos="flip-left"
data-aos-easing="ease-out-cubic"
data-aos-duration="2000">
<iframe width="720" height="550" src="https://www.youtube.com/embed/SBvV9_bybEo?t=1266s" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="col-xl-5 col-md-12">
<div class="block-text pt-12">
<h5 class="sub-title mb-10" data-aos="fade-up" data-aos-duration="1000">Gameplay</h5>
<h3 class="title mb-37" data-aos="fade-up" data-aos-duration="1000"> </h3>
<h4 class="fs-18 mb-41" data-aos="fade-up" data-aos-duration="1000">Ten viajero, acepta este ropaje, estas bebidas y manzanas. Ahora toma tus cosas y emprende viaje, un nuevo mundo te está esperando, hazte de amigos y enemigos y vive una nueva aventura en las fantásticas tierras de este mundo llamado... Argentum Online</h4>
<a href="/aoclasico/index.html" class="btn-action style-2" data-aos="fade-up" data-aos-duration="1200">Jugar Ahora</a>
</div>
</div>
</div>
</div>
</section>
<!-- end Visions -->
<!-- Counter -->
<!-- <section class="tf-section counter">
<div class="container">
<div class="row">
<div class="col-12">
<div class="counter__body" data-aos="fade-down" data-aos-duration="1000">
<div class="counter">
<div class="number-counter">
<span class="number" data-speed="1000" data-to="100" data-inviewport="yes">100</span>K
</div>
<h5 class="title">Registered User</h5>
</div>
<div class="counter">
<div class="number-counter">
<span class="number" data-speed="1000" data-to="5" data-inviewport="yes">22</span>
</div>
<h5 class="title">Years of development</h5>
</div>
<div class="counter">
<div class="number-counter">
<span class="number" data-speed="1000" data-to="10" data-inviewport="yes">10</span>B
</div>
<h5 class="title">Yearly Trading</h5>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- end Counter -->
<!-- FAQ -->
<section class="tf-section faq">
<div id="faq" class="container">
<div class="row">
<div class="col-12">
<div class="block-text center">
<h1 class="heading-bg" data-aos="fade-down" data-aos-duration="1000"><span>FAQ</span></h1>
<h5 class="sub-title mb-10" data-aos="fade-up" data-aos-duration="1000">FAQ</h5>
<h3 class="title mb-28" data-aos="fade-up" data-aos-duration="1000">Frequently Aksed <br>
Questions</h3>
</div>
</div>
</div>
<div class="row flat-tabs">
<div class="col-md-4">
<ul class="menu-tab">
<li class="item-title active">
<span class="inner">AO Libre</span>
</li>
<li class="item-title">
<span class="inner">NFT Collection</span>
</li>
<li class="item-title">
<span class="inner">$AOLB (BEP-20)</span>
</li>
</ul>
</div>
<div class="col-md-8">
<div class="content-tab">
<div class="content-inner">
<div class="flat-accordion">
<div class="flat-toggle">
<h5 class="toggle-title">What is AO Libre?</h5>
<div class="toggle-content">
<p class="fs-18">AO Libre is a collaborative project using open-source as a
banner. Everyone is invited to participate by making modifications to the
code, graphics, sounds, adding items, spells, mapping or being part of the
organization of the game within the server. All our resources and code are
released under the GPL license and can be found on Github.</p>
<p class="fs-22">More information in our <a href="https://whitepaper.argentumonline.org/">whitepaper</a></p>
</div>
</div>
<div class="flat-toggle">
<h5 class="toggle-title">Is the Game Online?</h5>
<div class="toggle-content">
<p class="fs-18">Yes, you can download the game from <a
href="/aoclasico/index.html" target="_blank">
here</a> and play in any server either fan-maintained or the maintained
by AO Libre's staff</p>
</div>
</div>
</div>
</div>
<div class="content-inner">
<div class="flat-accordion">
<div class="flat-toggle">
<h5 class="toggle-title">How do I buy an ARGENTUM NFT?</h5>
<div class="toggle-content">
<p class="fs-18">First, you’ll need to have an Ethereum wallet. You can directly
create one and buy some Ethereum on platforms such as Kraken, Satoshitango
or BuenBit. Then, you’ll have to setup the
Metamask chrome extension. Finally,
you’ll be able to buy ARGENTUM NFTs directly on our website on the date
of the public sale.</p>
</div>
<h5 class="toggle-title">What is an NFT?</h5>
<div class="toggle-content">
<p class="fs-18">An NFT (Non-fungible token) is a piece of digital asset (image,
video, audio...) that lives in the blockchain. Once you buy an NFT, it
belongs to you, and no one will be able to copy or distribute your NFT
thanks to the decentralized aspect of the blockchain. You’ll then be able to
trade and sell your NFTs on NFTs marketplaces like Open Sea.</p>
</div>
<h5 class="toggle-title">NFT Collection</h5>
<div class="toggle-content">
<p class="fs-18">ARGENTUMS are 10,000 lovable characters generated Non Fungible
Tokens (NFTS) eternally written on the Ethereum blockchain. These ARGENTUMS
have varying traits that make each unique and collectible (Weapon, Helmet,
Armour and Weapon). These are the official ARGENTUMS of the AO Libre
community. Beware of scams.</p>
</div>
<h5 class="toggle-title">When is the public sale</h5>
<div class="toggle-content">
<p class="fs-18">Check in the <a href="nfts">ARGENTUMS NFTs Collection section </a>.</p>
</div>
<h5 class="toggle-title">How can I get an ARGENTUM?</h5>
<div class="toggle-content">
<p class="fs-18">ARGENTUMS will be available to mint directly from our website
by simply connecting your Metamask wallet. You will also be able to purchase
from our secondary market on the official ARGENTUMS OpenSea collection.
Please make sure you use the correct link - all official links can be found
on our Discord channel.</p>
</div>
</div>
</div>
</div>
<div class="content-inner">
<div class="flat-accordion">
<div class="flat-toggle">
<h5 class="toggle-title">$AOLB (Binance Smart Chain) - Official Token</h5>
<div class="toggle-content">
<p class="fs-18">
We have our BEP-20 token (AOLB) which we will use for a lot of
things including, rewards to our players, rewards to people who collaborate
in the project in many ways, design, music, game masters, server
maintainers, game designers, developers, qa team, etc.
</p>
<p class="fs-18">
If you HOLD 100,000 $AOLB Tokens, you will receive 1 ARGENTUM NFT by Airdrop
more info in the <a href="nfts">ARGENTUMS NFTs Section</a>
</p>
<img src="aoclasico/assets/images/ao-libre-aolb-logo.png"
alt="BEP-20" class="img-fluid">
<p class="fs-18">
<a href="https://argentumonline.org/aolb-token-crowdsale"
target="_blank">Buy $AOLB Token</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end FAQ -->
<!-- Blog -->
<!-- <section class="tf-section blog">
<div class="container">
<div class="row">
<div class="col-12">
<div class="block-text center">
<h1 class="heading-bg" data-aos="fade-down" data-aos-duration="1000"><span>Blog</span></h1>
<h5 class="sub-title mb-10" data-aos="fade-up" data-aos-duration="1000">From Our Blog</h5>
<h3 class="title mb-28" data-aos="fade-up" data-aos-duration="1000">Read Our Recent<br>News & Articles</h3>
</div>
</div>
</div>
<div class="row mt-51">
<div class="col-12">
<div class="swiper swiper-blog">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="blog__box" data-aos="fade-up" data-aos-duration="800">
<div class="blog-img">
<a href="blog-single.html">
<img src="assets/images/blog/blog-01.jpg" alt="Monteno">
</a>
</div>
<div class="blog-content">
<a href="blog-single.html" class="category">NFT Trading</a>
<a href="blog-single.html" class="h6 title">How to buy and sale nft in a easiest way</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="blog__box" data-aos="fade-up" data-aos-duration="1200">
<div class="blog-img">
<a href="blog-single.html">
<img src="assets/images/blog/blog-02.jpg" alt="Monteno">
</a>
</div>
<div class="blog-content">
<a href="blog-single.html" class="category">NFT Trading</a>
<a href="blog-single.html" class="h6 title">How to buy and sale nft in a easiest way</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="blog__box" data-aos="fade-up" data-aos-duration="1600">
<div class="blog-img">
<a href="blog-single.html">
<img src="assets/images/blog/blog-03.jpg" alt="Monteno">
</a>
</div>
<div class="blog-content">
<a href="blog-single.html" class="category">NFT Trading</a>
<a href="blog-single.html" class="h6 title">How to buy and sale nft in a easiest way</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="blog__box" data-aos="fade-up" data-aos-duration="800">
<div class="blog-img">
<a href="blog-single.html">
<img src="assets/images/blog/blog-04.jpg" alt="Monteno">
</a>
</div>
<div class="blog-content">
<a href="blog-single.html" class="category">NFT Trading</a>
<a href="blog-single.html" class="h6 title">How to buy and sale nft in a easiest way</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- end Blog -->
<!-- Partners -->
<section class="tf-section partners">
<div class="container">
<div class="row">
<div class="col-12">
<div class="partners__body style-2" data-aos="zoom-in" data-aos-duration="800">
<h5>We are online thanks to the support and services of the following companies: </h5>
<!-- Slider main container -->
<div class="swiper swiper-partner" data-swiper-autoplay="2000">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="box-partner">
<a href="https://www.conreco.com.ar"><img src="assets/images/partners/logo-01.png" alt="Conreco"></a>
</div>
</div>
<div class="swiper-slide">
<div class="box-partner">
<a href="https://www.minehost.com.ar"><img src="assets/images/partners/logo-02.png" alt="Minehost"></a>
</div>
</div>
<div class="swiper-slide">
<div class="box-partner">
<a href="https://blockspot.io"><img src="assets/images/partners/logo-09.png" alt="Blockspot"></a>
</div>
</div>
<div class="swiper-slide">
<div class="box-partner">
<a href="https://www.riseup.net"><img src="assets/images/partners/logo-03.png" alt="Rise Up"></a>
</div>
</div>
<div class="swiper-slide">
<div class="box-partner">
<a href="https://www.github.com"><img src="assets/images/partners/logo-04.png" alt="Github"></a>
</div>
</div>
<div class="swiper-slide">
<div class="box-partner">
<a href="https://www.db4free.net"><img src="assets/images/partners/logo-06.png" alt="db4free"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Partners -->
<!-- Footer -->
<footer class="footer style-2">
<div class="container">
<div class="row">
<div class="footer__body">
<div class="col-xl-3 col-md-6 col-12">
<div class="info">
<img src="assets/images/logo-2.png" alt="AO Libre Logo">
<p class="desc fs-18">
AO Libre es una organizacion sin fines de lucro, trabajamos de forma colaborativa donde mantenemos activamente juegos en forma open-source, tenemos servidores online para que cualquiera pueda entrar y jugar en nuestros mundos
</p>
<p class="desc fs-18">
Se distribuye bajo los términos de la licencia GNU Affero GPL (General Public License).
</p>
<img src="https://www.gnu.org/graphics/agplv3-155x51.png" alt="" width="120">
<a href="https://www.gnu.org/licenses/agpl.html" target="_blank">Terminos y Condiciones de la Licencia</a>
<ul class="social">
<li><a href="https://www.facebook.com/argentumonlinelibre/"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="https://twitter.com/AOLibre"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://discord.com/invite/f5zp3zbVRj"><i class="fab fa-discord"></i></a></li>
<li><a href="https://www.instagram.com/argentumonlinelibre/"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://www.reddit.com/r/argentumonlineoficial/"><i class="fab fa-reddit"></i></a></li>
<li><a href="https://pin.it/2neqgsy"><i class="fab fa-pinterest"></i></a></li>
<li><a href="https://www.github.com/ao-libre"><i class="fab fa-github"></i></a></li>
</ul>
</div>
</div>
<div class="col-xl-3 col-md-6 col-6">
<div class="link s1">
<h5 class="title">Links</h5>
<ul>
<li><a href="/aoclasico/index.html">Jugar</a></li>
<li><a href="nfts">ARGENTUMS NFTs Collection</a></li>
<li><a href="aolb-token-crowdsale.html">Buy $AOLB from Crowdsale</a></li>
<li><a href="/aoclasico/index.html">Rankings</a></li>
<li><a href="https://whitepaper.argentumonline.org/">Whitepaper</a></li>
</ul>
</div>
</div>
<div class="col-xl-3 col-md-6 col-6">
<div class="link s2">
<h5 class="title">Ayuda</h5>
<ul>
<li><a target="_blank" href="https://www.reddit.com/r/argentumonlineoficial/comments/9dow3q/como_montar_mi_propio_servidor/">Montar mi server</a></li>
<li><a target="_blank" href="https://www.youtube.com/watch?v=p8Vf2jcJUFc">Indexar nuevos items</a></li>
<li><a target="_blank" href="https://www.youtube.com/watch?v=EvymQYQICsc">Crear nuevos mapas</a></li>
<li><a target="_blank" href="https://www.gs-zone.org/">GS-Zone foro de AO</a></li>
</ul>
</div>
</div>
<div class="col-xl-3 col-md-6 col-12">
<div class="newsletter">
<h5 class="title">Newsletter</h5>
<p class="fs-18">Recibe nuestras novedades por correo.</p>
<form style="border:1px solid #ccc;padding:3px;text-align:center;" action="https://tinyletter.com/aolibre" method="post" target="popupwindow" onsubmit="window.open('https://tinyletter.com/aolibre', 'popupwindow', 'scrollbars=yes,width=800,height=600');return true"><p><label for="tlemail">Enter your email address</label></p><p><input type="text" style="width:140px" name="email" id="tlemail" /></p><input type="hidden" value="1" name="embed"/><input type="submit" value="Subscribe" /><p></p></form>
</div>
</div>
</div>
<div class="footer_bottom">
<p class="fs-16">⚔️ 2022, AO Libre </p>
<ul>
<li><a href="mailto:[email protected]">🛡️ [email protected]</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- end Footer -->
<script src="app/js/jquery.min.js"></script>
<script src="app/js/swiper-bundle.min.js"></script>
<script src="app/js/swiper.js"></script>
<script src="app/js/countto.js"></script>
<script src="app/js/app.js"></script>
<script src="app/js/aos.js"></script>
<script type="text/javascript" src="app/js/vanilla-tilt.js"></script>
<script type="text/javascript">
VanillaTilt.init(document.querySelector(".box-item"), {
max: 25,
speed: 400
});
VanillaTilt.init(document.querySelectorAll(".box-item"));
</script>
<script>
AOS.init();
</script>
</body>
</html>