| Server IP : 74.208.250.37 / Your IP : 216.73.216.114 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : miferval ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/retoaventura/ |
Upload File : |
<?php
session_start();
/*
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
*/
if(isset($_GET['logout'])){unset($_SESSION['customer']);}
include 'config.php';
require_once 'system/bootstrap.php';
/*
Including HTML Mosaic Framework loosly based on Boilerplate
*/
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php echo SITE_NAME.' | '.utf8_encode($page['pagetitle']);?></title>
<?php if(!empty($meta)){ ?>
<!--METAS-->
<meta name="description" content="<?php echo $meta['description'];?>">
<meta name="keywords" content="<?php echo $meta['keywords'];?>">
<?php } ?>
<meta name="viewport" content="width=device-width">
<!--STYLES-->
<link rel="stylesheet" href="css/mosaico.css" />
<!--<link rel="stylesheet" type="text/css" href="css/vendor/jquery.lightbox-0.5.css" media="screen" />-->
<link rel="stylesheet" href="<?php echo TEMPLATE_PATH;?>style.css" />
<!--DEV-->
<!--<link rel="stylesheet" href="http://mddev.local/basehold/24">-->
<!--FONTS-->
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<!--SCRIPTS-->
<script src="js/vendor/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/vendor/jquery.cycle2.js"></script>
<script type="text/javascript" src="js/vendor/jquery.validate.js"></script>
<script type="text/javascript" src="js/vendor/validate_form.js"></script>
<script src="js/main.js"></script>
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">Estas Usando un Navegador obsoleto <strong>Actualiza</strong> tu Navegador <a href="http://browsehappy.com/">upgrade your browser</a></p>
<![endif]-->
<?php
include DIR_TEMPLATE.'top.php';
include 'router.php';
include DIR_TEMPLATE.'bottom.php';
?>
<script>
$(document).ready(function(){
$("button").click(function() {
var action=$("button").data("toggle");
var value=$("button").data("target");
//alert(action);
if(action=='show'){
$(value).show( "slow" );
$("button").data('toggle', 'collapse');
}
if(action=='collapse'){
$(value).hide( "slow" );
$("button").data('toggle', 'show');
}
});
});
/*
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src='//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
*/
</script>
</body>
</html>