

Nextrek
@ 1055
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 |
<?php if ($_SERVER['HTTP_HOST'] != "localhost"){ define( '_JEXEC', 1 ); define('JPATH_BASE', '../'); require_once ( JPATH_BASE .'/includes/defines.php' ); require_once ( JPATH_BASE .'/includes/framework.php' ); $language = JFactory::getLanguage(); $lang = $language->getTag(); } else { $lang = "it-IT"; } ?> <!DOCTYPE html> <html lang="<?php echo $lang; ?>" > <head> <meta content="width=device-width, initial-scale=1.0" name="viewport" user-scalable=no> <link href='//fonts.googleapis.com/css?family=Roboto:400,300,500' rel='stylesheet' type='text/css'> <link href="//fonts.googleapis.com/css?family=Varela:400&subset=latin-ext,latin" rel="stylesheet" type="text/css"> <link rel="stylesheet" href="css/style.css" media="all"/> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script src="js/scripts.js"></script> <script src="js/core.js"></script> <script src="js/popup.js"></script> <script src="lang/lang.js"></script> </head> <body> <div id="page-wrapper"> <header class="search-header"> <h1 align="center"><script> $('.search-header h1').text(getText("Punti di ricarica vicini", "<?php echo $lang; ?>"));</script></h1> <h2 align="center"><script> $('.search-header h2').text(getText("Ricerca il punto di ricarica più vicino a te", "<?php echo $lang; ?>"));</script></h2> </header> <div class="maps-frame"> <iframe id="content-map" src="maps-frame.php" height="100%" width="100%"></iframe> </div> <!--div class="loader"> <img class="loading-image" src="img/loader.gif" srcset="img/loader.gif, img/loader.gif 2x" alt="loading.."> </div--> </div> </body> </html> |