forked from niceplaces/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
646 lines (640 loc) · 38.3 KB
/
index.php
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
<?php
require_once "utils.php";
?>
<!doctype html>
<html lang="<?php echo get_lang() ?>">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Phone icons and favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="<?php echo $BASE_URL ?>assets/favicons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="<?php echo $BASE_URL ?>assets/favicons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="<?php echo $BASE_URL ?>assets/favicons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="<?php echo $BASE_URL ?>assets/favicons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="<?php echo $BASE_URL ?>assets/favicons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="<?php echo $BASE_URL ?>assets/favicons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="<?php echo $BASE_URL ?>assets/favicons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="<?php echo $BASE_URL ?>assets/favicons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="<?php echo $BASE_URL ?>assets/favicons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="<?php echo $BASE_URL ?>assets/favicons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo $BASE_URL ?>assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="<?php echo $BASE_URL ?>assets/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo $BASE_URL ?>assets/favicons/favicon-16x16.png">
<link rel="manifest" href="<?php echo $BASE_URL ?>manifest.json">
<meta name="msapplication-TileColor" content="#185D42">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#185D42">
<link rel="stylesheet" href="<?php echo $BASE_URL ?>css/card_list.css">
<link rel="stylesheet" href="<?php echo $BASE_URL ?>css/index.css?v=5">
<link rel="stylesheet" href="<?php echo $BASE_URL ?>css/index_animations.css">
<link rel="stylesheet" href="<?php echo $BASE_URL ?>css/carousel.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="<?php echo $BASE_URL ?>lib/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>Nice Places</title>
<meta name="description" content="Nice Places è un'app che ti permette di conoscere i luoghi di interesse storico e culturale nelle tue vicinanze, offrendoti una descrizione sulle opere per soddisfare la tua curiosità." />
<meta name="keywords" content="app, mobile, android, luoghi, esplora, italia, navigatore, turismo, toscana, siena" />
</head>
<body>
<div style="overflow-x: hidden">
<!-- Prevent right space on mobile -->
<div class="background-image"></div>
<!--<div class="row" id="video-background" style="position: absolute; top: 0; left: 0; right: 0">
<video src="<?php /*echo $BASE_URL */ ?>assets/trailer.mp4" type="video/mp4" autoplay loop preload="auto" muted>
</video>
</div>-->
<div class="container">
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light">
<div class="container container-navbar">
<a class="navbar-brand" href="#"><img id="logo" src="<?php echo $BASE_URL ?>assets/logo_website.png" /></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="flex-row-reverse collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://www.niceplaces.it/blog/">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#progetto"><?php echo t("il-progetto") ?></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#funzioni"><?php echo t("funzioni") ?></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#screenshot"><?php echo t("screenshot") ?></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#luoghi"><?php echo t("luoghi") ?></a>
</li>
<li class="nav-item dropdown lang">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<?php switch (get_lang()) {
case "it": ?>
<img src="<?php echo $BASE_URL ?>assets/icons/italy.png">
<?php break;
case "en": ?>
<img src="<?php echo $BASE_URL ?>assets/icons/united_kingdom.png">
<?php break;
} ?>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item flag-it" href="<?php echo $BASE_URL ?>">
<img src="<?php echo $BASE_URL ?>assets/icons/italy.png"> Italiano</a>
<a class="dropdown-item flag-en" href="<?php echo $BASE_URL ?>en/">
<img src="<?php echo $BASE_URL ?>assets/icons/united_kingdom.png"> English</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<section>
<div class="row">
<div class="col">
<a class="anchor" name="home"></a>
</div>
</div>
<div class="row home align-items-center">
<div class="col-md-12 col-lg-6">
<p class="slogan"><?php echo t("slogan") ?></p>
<p class="sub-slogan"><?php echo t("sub-slogan") ?></p>
<p class="p-badge">
<?php switch (get_lang()) {
case "it": ?>
<a href='https://play.google.com/store/apps/details?id=com.niceplaces.niceplaces'>
<img alt='Disponibile su Google Play' class='lang-it google-play-badge-it' src='https://play.google.com/intl/en_us/badges/images/generic/it_badge_web_generic.png' />
</a>
<a href="<?php echo $BASE_URL ?>app/">
<img alt='Disponibile come web app' class='lang-it google-play-badge' src='<?php echo $BASE_URL ?>assets/webapp-badge.png' />
</a>
<?php break;
case "en": ?>
<a href='https://play.google.com/store/apps/details?id=com.niceplaces.niceplaces'>
<img alt='Get it on Google Play' class='google-play-badge' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' />
</a>
<a href="<?php echo $BASE_URL ?>en/app/">
<img alt='Available as web app' class='google-play-badge' src='<?php echo $BASE_URL ?>assets/webapp-badge.png' />
</a>
<?php break;
} ?>
</p>
<div class="text-center">
<a class="social-icon" href="https://www.facebook.com/niceplacesapp/">
<i class="fab fa-facebook fa-2x"></i>
</a>
<a class="social-icon" href="https://www.instagram.com/niceplacesapp/">
<i class="fab fa-instagram fa-2x"></i>
</a>
<a class="social-icon" href="https://twitter.com/niceplacesapp">
<i class="fab fa-twitter fa-2x"></i>
</a>
<a class="social-icon" href="https://t.me/niceplacesapp/">
<i class="fab fa-telegram fa-2x"></i>
</a>
<a class="social-icon" href="https://discord.gg/p9fC72mzDX">
<i class="fab fa-discord fa-2x"></i>
</a>
<a class="social-icon" href="https://github.com/niceplaces">
<i class="fab fa-github fa-2x"></i>
</a>
</div>
</div>
<div class="col-md-12 col-lg-6 text-center">
<img class="main-screen" src="<?php echo $BASE_URL ?>assets/devices-<?php echo get_lang() ?>.png">
</div>
</div>
</section>
<section>
<div class="row">
<div class="col">
<iframe width="560" height="315" src="https://www.youtube.com/embed/soq79b7UISo" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</section>
<section>
<div class="row">
<div class="col">
<a class="anchor" name="progetto"></a>
<h2 class="section-header"><?php echo t("il-progetto") ?></h2>
</div>
</div>
<div class="row">
<div class="col">
<?php switch (get_lang()) {
case "it": ?>
<p>La ricchezza artistica, storica e culturale è un bene molto prezioso per tutto il nostro
Paese, che
secondo questo parametro si pone al primo posto al mondo. </p>
<p>Noi crediamo che conoscere la storia e le particolarità dei numerosi luoghi intorno a noi sia
un modo
per apprezzare di più ciò che ci circonda.
Può poi essere anche un modo divertente per viaggiare, appassionarsi e scoprire luoghi anche
poco
conosciuti, ma
non per questo meno interessanti.</p>
<p>Con Nice Places, per esempio, si può passeggiare nel centro storico di una città, si può
consultare
l'app per scoprire quali sono i luoghi da visitare, sceglierne uno e attivare il navigatore
per
raggiungerlo e
quando siamo nei pressi di un punto di interesse, si può aprire la
descrizione sul cellulare per avere una breve panoramica di ciò che stiamo osservando.</p>
<blockquote>
<div class="quote">Sono meraviglie distribuite un po' in tutte le nostre regioni, cosa rara
perché
all'estero non è così. E poi sono meraviglie distribuite un po' in tutto il tempo:
si parte dall'antichità, per arrivare poi al Medioevo e poi al Rinascimento, '600, '700,
'800 e
oltre.
Anche questa è una rarità perché all'estero ci sono delle meraviglie ma, di solito, sono
confinate a
certi periodi specifici in ogni Paese. Da noi no, da noi ogni generazione, da più di
venticinque
secoli è stata capace di creare delle opere che emozionano, delle opere che l'UNESCO
definisce
"patrimonio dell'umanità" e questo ci rende certo molto orgogliosi di essere italiani,
però ci obbliga anche a dover tutelare, proteggere, valorizzare questo patrimonio e
soprattutto
regalarlo intatto alle generazioni successive di tutto il pianeta.
</div>
<div class="author">
<small>Alberto Angela, "Meraviglie", Rai 2018</small>
</div>
</blockquote>
<?php break;
case "en": ?>
<p>The artistic, historical and cultural richness is a very precious asset for our country, Italy
as well as many others. According to the number of UNESCO sites by country, Italy ranks first
in the world.</p>
<p>We believe that knowing the history and the uniqueness of places around us is a way to gain
appreciation of not only a specific location, but the country as a whole. It can also be a
fun way to get excited about traveling and discovering new places that may not be very well
known, but no less interesting.</p>
<p>The Nice Places app lists a multitude of places to visit, includes a picture of the location,
offers directions, a brief overview of that location and much more! When you are in the app,
choose your point of interest and activate the navigator to reach it. When you arrive to your
point of interest, the Nice Places app offers a historical overview of your destination.</p>
<blockquote>
<div class="quote">They are wonders distributed a little in all our regions, which is rare
because
abroad it's not
like that, and then they are distributed wonders all the time: it starts from antiquity,
then to the
Middle Ages and then to the Renaissance, '600,' 700, '800 and beyond.
This is also a rarity because abroad there are wonders but, usually, they are confined
to
certain
specific periods in each country. In Italy every generation, for more than twenty-five
centuries has been able to create works that excite, of the works that UNESCO defines
"heritage of
humanity" and this makes us very proud of being Italian, but it also obliges us to
protect
and enhance
this heritage and above all give it intact to the next generations of the entire planet.
</div>
<div class="author">
<small>Alberto Angela, "Meraviglie", Rai 2018</small>
</div>
</blockquote>
<?php break;
} ?>
</div>
</div>
</section>
<section>
<div class="row">
<div class="col">
<a class="anchor" name="funzioni"></a>
<h2 class="section-header"><?php echo t("funzioni") ?></h2>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-6">
<h3><?php echo t("luoghi-intorno-a-te") ?></h3>
<p class="p-function">
<?php switch (get_lang()) {
case "it": ?>
Con i servizi di localizzazione del tuo smartphone puoi vedere una mappa che mostra
dove si trovano i luoghi registrati su Nice Places. In basso si trova una lista con i luoghi ordinati in base alla distanza:
i
primi sono più vicini.
Toccando un luogo sulla mappa o nella lista puoi aprire la scheda del luogo e successivamente il
navigatore.
<?php break;
case "en": ?>
You can find the points of interest that are registered on Nice Places by using your mobile phone's map service.
Below the map, is a list of places in order by distance from you. Clicking the point of interest from the map or
the list shows the map view. If you want to navigate to that location, click on the map, then start navigation.
<?php } ?></p>
</div>
<div class="col-sm-12 col-md-12 col-lg-6">
<h3><?php echo t("esplora") ?></h3>
<p class="p-function">
<?php switch (get_lang()) {
case "it": ?>
Con questa funzione si può consultare la lista dei luoghi divisi per area di
appartenenza. Anche da qui,
con un "tap" su un luogo si può aprire la relativa scheda e consultarne la descrizione.
<?php break;
case "en": ?>
This feature lets you search for a place or choose from a list of that is divided by city and country.
<?php } ?></p>
</div>
<div class="col-md-12 col-lg-6">
<h3><?php echo t("nuovi-luoghi") ?></h3>
<p class="p-function">
<?php switch (get_lang()) {
case "it": ?>
Aggiungiamo periodicamente nuovi punti di interesse e nuove descrizioni. Con questa funzione puoi
vedere quali sono gli ultimi luoghi inseriti e gli ultimi luoghi aggiornati.
<?php break;
case "en": ?>
This section offers the latest addtions and updates to Nice Places. We periodically update our app
with new points of interest and their histories.
<?php } ?>
</p>
</div>
<div class="col-md-12 col-lg-6">
<h3><?php echo t("notifiche") ?></h3>
<p class="p-function">
<?php switch (get_lang()) {
case "it": ?>
L'applicazione ci permette di comunicarti tutte le ultime novità su Nice Places tramite le notifiche
sul tuo dispositivo, in questo modo potrai rimanere sempre aggiornato! Se però non hai un dispositivo
Android su cui installare l'app, ti consigliamo di iscriverti al nostro
<a href="https://t.me/niceplacesapp/">canale Telegram</a> per
ricevere comunque i nostri aggiornamenti.
<?php break;
case "en": ?>
Stay up-to-date with the latest news with notifications from Nice Places!
<?php } ?>
</p>
</div>
</div>
</section>
<section>
<div class="row">
<div class="col">
<a class="anchor" name="screenshot"></a>
<h2 class="section-header"><?php echo t("screenshot") ?></h2>
</div>
</div>
<div class="row">
<div class="col">
<div class="row text-center my-3">
<div class="row mx-auto my-auto">
<div id="recipeCarousel" class="carousel slide w-100" data-ride="carousel">
<div class="carousel-inner w-100" role="listbox">
<?php
$img = array(
"screen1.png", "screen2.png", "screen3.png", "screen4.png", "screen5.png",
"screen6.png", "screen7.png", "screen8.png"
);
for ($i = 0; $i < count($img); $i++) {
echo
'<div class="carousel-item ' . (($i == 0) ? "active" : "") . '">
<img class="d-block col-lg-3 col-md-4 col-sm-6 img-fluid"
src="' . $BASE_URL . 'assets/screens/' . get_lang() . '/' . $img[$i] . '">
</div>';
}
?>
</div>
<a class="carousel-control-prev" href="#recipeCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#recipeCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="container-fluid" style="padding-left: 0; padding-right: 0">
<section>
<div class="row">
<div class="col">
<a class="anchor" name="luoghi"></a>
<h2 class="section-header"><?php echo t("luoghi") ?></h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<iframe frameborder="0" height="600px" width="100%" src="<?php echo $BASE_URL ?>map.php?mode=release">
</iframe>
</div>
</div>
</section>
</div>
<div class="container" style="padding-top: 0">
<section>
<div class="row">
<div class="col">
<a class="anchor" name="contatti"></a>
<h2 class="section-header"><?php echo t("contatti") ?></h2>
</div>
</div>
<div class="row">
<div class="col">
<p>
<?php switch (get_lang()) {
case "it": ?>
Se vuoi sapere di più su di noi o sul progetto, se vuoi segnalarci un problema oppure <i>se vuoi
collaborare
con noi</i> puoi contattarci inviando un messaggio alla nostra pagina Facebook o al nostro
profilo
Instagram, oppure
inviaci una e-mail a <a href="mailto:[email protected]">[email protected]</a>.</p>
<?php break;
case "en": ?>
If you want to know more about us or about the project, if you want to report a problem or <i>if you
want to collaborate with
us</i> you can contact us by sending a message to our Facebook page, to our
Instagram profile, or send us an e-mail to <a href="mailto:[email protected]">[email protected]</a>.
<?php } ?>
</div>
</div>
</section>
<section>
<div class="row">
<div class="col">
<a class="anchor" name="partners"></a>
<h2 class="section-header"><?php echo t("parlano-di-noi") ?></h2>
</div>
</div>
<div class="row">
<div class="col">
<blockquote>
<h4>
<?php switch (get_lang()) {
case "it": ?>
<div class="quote">Vi invito a provarla: sono pronto a scommettere che vi piacerà!</div>
<?php break;
case "en": ?>
<div class="quote">I invite you to try it: I am ready to bet you will like it!</div>
<?php } ?>
</h4>
<h6>
<div class="author">
<a href="https://www.zerozone.it/provati-per-voi/nice-places-lapp-per-scoprire-posti-nuovi/14320" target="_blank">
<h6>Il Blog di Michele Pinassi</h6>
</a>
</div>
</h6>
</blockquote>
<blockquote>
<h4>
<?php switch (get_lang()) {
case "it": ?>
<div class="quote">Consiglio un bel giro di prova, ne vale la pena <span style="font-style: normal">😉</span></div>
<?php break;
case "en": ?>
<div class="quote">I recommend a test spin, it's worth it <span style="font-style: normal">😉</span></div>
<?php } ?>
</h4>
<h6>
<div class="author">
<a href="https://xantarmob.altervista.org/nice-places-una-guida-artistica-italiana-da-provare-su-android/" target="_blank">
Xantarmob
</a>
</div>
</h6>
</blockquote>
</div>
</div>
</section>
<?php
function contributor($name, $img, $link)
{
?>
<div class="col-12 col-sm-4 col-lg-3">
<div style="margin: 10px">
<div class="row">
<div class="col d-flex justify-content-center">
<a href="<?php echo $link ?>">
<div class="profile-picture" style="background-image: url(<?php echo $img ?>)">
</div>
</a>
</div>
</div>
<div class="row">
<div class="col d-flex justify-content-center">
<a style="font-size: 12px" href="<?php echo $link ?>"><?php echo $name ?></a>
</div>
</div>
</div>
</div>
<?php } ?>
<?php
function contributor_small($name, $img, $link)
{
?>
<div style="margin: 10px">
<div class="row">
<div class="col d-flex justify-content-center">
<a href="<?php echo $link ?>">
<div title="<?php echo $name ?>" class="profile-picture-small" style="background-image: url(<?php echo $img ?>)">
</div>
</a>
</div>
</div>
</div>
<?php } ?>
<section>
<div class="row">
<div class="col">
<h2 class="section-header"><?php echo t("contributori") ?></h2>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-12 col-lg-6">
<div class="colrow">
<div class="col" style="margin-bottom: 10px">
<h5 style="text-align: center"><?php echo t("persone") ?></h5>
</div>
</div>
<div class="row justify-content-center about-us">
<?php
contributor_small(
"Lorenzo Vainigli",
$BASE_URL . "assets/profile-pictures/lorenzo.jpg",
"https://www.lorenzovainigli.com"
);
contributor_small(
"Dario Chesi",
$BASE_URL . "assets/profile-pictures/dario.jpg",
"https://www.instagram.com/chesidario/"
);
contributor_small(
"Francesca Mecacci",
$BASE_URL . "assets/profile-pictures/francesca.jpg",
"https://www.linkedin.com/in/f-mecacci/"
);
contributor_small(
"Melania Anichini",
$BASE_URL . "assets/profile-pictures/melania.jpg",
"https://www.facebook.com/melania.anichini"
);
contributor_small(
"Kristen Wilkinson",
"https://avatars.githubusercontent.com/u/96791049?v=4",
"https://github.com/kselena"
);
contributor_small(
"Raphael Ayorinde",
"https://avatars.githubusercontent.com/u/106425235?v=4",
"https://github.com/rafikimask"
);
contributor_small(
"Deependra Kumar",
"https://avatars.githubusercontent.com/u/68677868?v=4",
"https://github.com/Deepu178"
);
?>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="colrow">
<div class="col" style="margin-bottom: 10px">
<h5 style="text-align: center"><?php echo t("associazioni") ?></h5>
</div>
</div>
<div class="row justify-content-center about-us">
<?php
contributor_small(
"Pro Loco Sovicille",
$BASE_URL . "assets/icons/proloco.png",
"https://www.prolocosovicille.it/"
);
contributor_small(
"Cammino d'Etruria",
$BASE_URL . "assets/icons/cammino-d-etruria.jpg",
"https://www.facebook.com/camminodetruria/"
);
contributor_small(
"Pro Loco Murlo",
$BASE_URL . "assets/icons/proloco-murlo.jpeg",
"https://prolocomurlo.it/"
);
?>
</div>
</div>
</div>
</div>
</section>
<section class="mt-5">
<div class="row counters">
<div class="col">
<h4><?php echo t("luoghi") ?></h4>
<h1 class="counter-plus" data-count="600">0</h1>
</div>
<div class="col">
<h4><?php echo t("descrizioni") ?></h4>
<h1 class="counter-plus" data-count="200">0</h1>
</div>
<div class="col">
<h4><?php echo t("download") ?></h4>
<h1 class="counter-plus" data-count="1200">0</h1>
</div>
</div>
</section>
<div class="row mb-3" style="text-align: center">
<div class="col col-net-link text-center">
<a class="social-icon" href="https://www.facebook.com/niceplacesapp/">
<i class="fab fa-facebook fa-2x"></i>
</a>
<a class="social-icon" href="https://www.instagram.com/niceplacesapp/">
<i class="fab fa-instagram fa-2x"></i>
</a>
<a class="social-icon" href="https://twitter.com/niceplacesapp">
<i class="fab fa-twitter fa-2x"></i>
</a>
<a class="social-icon" href="https://t.me/niceplacesapp/">
<i class="fab fa-telegram fa-2x"></i>
</a>
<a class="social-icon" href="https://discord.gg/p9fC72mzDX">
<i class="fab fa-discord fa-2x"></i>
</a>
<a class="social-icon" href="https://github.com/niceplaces">
<i class="fab fa-github fa-2x"></i>
</a>
</div>
</div>
<div class="row mb-2" style="text-align: center">
<div class="col col-net-link text-center">
<?php switch (get_lang()) {
case "it": ?>
<a href="https://www.niceplaces.it/privacy_policy.html">Privacy Policy</a>
<?php break;
case "en": ?>
<a href="https://www.niceplaces.it/en/privacy_policy.html">Privacy Policy</a>
<?php } ?>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="<?php echo $BASE_URL ?>lib/js/jquery-3.3.1.min.js"></script>
<script src="<?php echo $BASE_URL ?>lib/js/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="<?php echo $BASE_URL ?>lib/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="<?php echo $BASE_URL ?>lib/js/jquery.fitvids.js"></script>
<script src="<?php echo $BASE_URL ?>js/index.js?v=1"></script>
<script src="<?php echo $BASE_URL ?>js/carousel.js"></script>
<?php include "data/protected/ganalytics.php" ?>
<script type="text/javascript" id="cookieinfo" src="//cookieinfoscript.com/js/cookieinfo.min.js" data-bg="#645862" data-fg="#FFFFFF" data-message="<?php echo t("usiamo-i-cookie") ?>" data-link="#F1D600" data-linkmsg="" data-cookie="CookieInfoScript" data-text-align="left" data-close-text="<?php echo t("ho-capito") ?>">
</script>
<script src="https://kit.fontawesome.com/70291d2ec9.js" crossorigin="anonymous"></script>
</body>
</html>