if ($_SERVER['REQUEST_URI']=="/index.html")
{
header ('HTTP/1.1 301 Moved Permanently');
header ('Location: /');
}
include 'config.php';
$timestamp=time();
$SMARTY->Assign('timestamp',$timestamp);
/*
$sql="SELECT * FROM _stations";
$RES=$DB->Qry($sql);
while ($row=$RES->GetARow())
{
$row['lat']=$row['lat'];
$row['lng']=$row['lng'];
$stations[]=$row;
}
$SMARTY->Assign('PROP',$stations);
*/
$SMARTY->SetMetaTitle('');
$SMARTY->SetMetaDesc('');
$SMARTY->SetMetaKeyw('');
$SMARTY->ShowHeader();
$SMARTY->ShowBody('index.tpl');
$SMARTY->ShowFooter();
?>