42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
|
|
require_once(dirname(__FILE__)."/load.php");
|
|
|
|
try {
|
|
|
|
AnalyticsHelper::logPageImpression();
|
|
|
|
GUIHandler::generateHtmlHeaders();
|
|
|
|
}catch(GUIException $ex){
|
|
$error = $ex->getMessage();
|
|
}catch (Exception $exec){
|
|
$msg = LogModel::fromException($exec);
|
|
GlobalVariables::get("dao")->save($msg);
|
|
|
|
GUIHandler::redirect("index.php");
|
|
}
|
|
?>
|
|
|
|
<div style="width:1000px;margin-left:auto;margin-right:auto;">
|
|
<?php
|
|
GUIHandler::generateHeadPublic();
|
|
GUIHandler::generateMenu();?>
|
|
<div class="contattiRedazione">
|
|
<div style="color:#199fe6;">GERENZA</div>
|
|
<img alt="" src="images/blueBalls.png">
|
|
<div><a style="color:black;" href="www.ifattidinapoli.it">www.ifattidinapoli.it</a></div>
|
|
<img alt="" src="images/blueBalls.png">
|
|
<div style="color:#199fe6;">Direttore Responsabile</div>
|
|
<div style="font-weight:bold;">Antonio Pianelli</div>
|
|
<div style="font-weight:bold;color:red;font-size:18px;">337848292</div>
|
|
<img alt="" src="images/blueBalls.png">
|
|
<div style="color:#199fe6;">info@ifattidinapoli.it</div>
|
|
<div style="font-weight:bold;padding:5px;">TESTATA REGISTRATA PRESSO IL TRIBUNALE DI NAPOLI AUT. NR. 8 DEL 27 GENNAIO 2006</div>
|
|
|
|
</div>
|
|
<?php
|
|
GUIHandler::generateFooter();
|
|
GUIHandler::generateGoogleAnalyticsScripts();
|
|
?>
|
|
</div>
|