<?php
/*
 *   PHP Document
 *   Document Author: ZORRAQUINO COMUNICACIÓN S.L.U.
 *   Document Copyright: 2008-2020 © ZORRAQUINO COMUNICACIÓN S.L.U.
 *
 *   https://www.zorraquino.com
 *
 * _______________________________
 * Frontend CMS Web 2.0 //
 */

define( 'ABSPATH', dirname(__FILE__) . '/' );
require_once( ABSPATH . "php_inc/start.inc.php" );

if ($root) {
	require_once( ABSPATH . $alias."/cont.php");
} else {
	if (!$smarty->isCached(TPLPATH . "front/".$_SESSION['tpl_front']."/contenido.html.tpl", $cacheID)) {
		require_once( ABSPATH . $alias."/cont.php");
	}
}

if ($root) {
	$smarty->display(TPLPATH . "front/".$_SESSION['tpl_front']."/contenido.html.tpl");
} else {
	$smarty->display(TPLPATH . "front/".$_SESSION['tpl_front']."/contenido.html.tpl", $cacheID);
}

db::closeDB();
db::closeLogDB();
?>