49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<?php
|
|
|
|
require_once(dirname(__FILE__)."/load.php");
|
|
|
|
try {
|
|
|
|
AnalyticsHelper::logPageImpression();
|
|
|
|
$config = GlobalVariables::get("config");
|
|
$mobileLink = GUIHandlerMobile::getBaseUrl()."redazione.php";
|
|
|
|
$additionalHeaders = array();
|
|
$additionalHeaders[] = '<link rel="alternate" media="only screen and (max-width: 640px)" href="'.$mobileLink.'"/>';
|
|
|
|
GUIHandler::generateHtmlHeaders(array("additionalMetadata"=>$additionalHeaders));
|
|
|
|
|
|
}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 >GERENZA</div>
|
|
<img alt="" src="images/blueBalls.png">
|
|
<div><a href="http://www.ifattidinapoli.it">www.ifattidinapoli.it</a></div>
|
|
<img alt="" src="images/blueBalls.png">
|
|
<div >Direttore Responsabile</div>
|
|
<div style="font-weight:bold;color:black;">Antonio Pianelli</div>
|
|
<div style="font-weight:bold;color:red;font-size:12pt;">337848292</div>
|
|
<img alt="" src="images/blueBalls.png">
|
|
<div>info@ifattidinapoli.it</div>
|
|
<div style="font-weight:bold;padding:5px;font-size:14pt;color:black;">TESTATA REGISTRATA PRESSO IL TRIBUNALE DI NAPOLI AUT. NR. 8 DEL 27 GENNAIO 2006</div>
|
|
|
|
</div>
|
|
<?php
|
|
GUIHandler::generateFooter();
|
|
GUIHandler::generateGoogleAnalyticsScripts();
|
|
?>
|
|
</div>
|