Showing with 14 additions and 5 deletions.
  1. +8 −0 css/main.css
  2. +2 −2 funzioni.php
  3. +4 −3 regione.php
8 changes: 8 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,14 @@ a:hover {
margin: 10px 0;
}

.titoloregione {
display: block;
text-align: center;
font:3em ChunkFiveRoman,Helvetica,Arial,sans-serif;
color: #444;
margin: 10px 0;
}

#footer {
padding-top: 10px;
}
Expand Down
4 changes: 2 additions & 2 deletions funzioni.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ function lugfooter () {

function ultimo_aggiornamento () {
?>
<a href="http://github.com/Gelma/LugMap/commits/lugmap.linux.it">&raquo; Aggiornato al <?php print file_get_contents('../.ultimo_commit') ?></a><br />
<a href="mailto:andrea.gelmini@lugbs.linux.it,bob4job@gmail.com?subject=LugMap: segnalazione aggiornamento/errore/refuso">&raquo; Segnala</a>
<a href="http://github.com/Gelma/LugMap/commits/lugmap.linux.it">&raquo; Aggiornato al <?php print file_get_contents('../.ultimo_commit') ?>&nbsp;</a><br />
<a href="mailto:andrea.gelmini@lugbs.linux.it,bob4job@gmail.com?subject=LugMap: segnalazione aggiornamento/errore/refuso">&raquo; Segnala&nbsp;</a>

<?php
}
Expand Down
7 changes: 4 additions & 3 deletions regione.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
if (array_key_exists ($regione, $elenco_regioni)) { # lasciamo il controllo, ma in ogni caso dovremmo ottenere un 404
$db_file = '../db/'.$regione.'.txt';
$db_regione = file ($db_file);
$title = 'LUG presenti nella regione '. $elenco_regioni[$regione];
$title = 'LugMap: '. $elenco_regioni[$regione];
} else {
header("location: http://lugmap.linux.it/"); }

Expand Down Expand Up @@ -76,8 +76,9 @@
?>

<div id="center">
<h1 class="titoloregione"><?php echo $title; print '&nbsp;<g:plusone size="small"></g:plusone>'; ?></h1>
<p class="fromRegionLinks">
<a href="/">&raquo; torna alla LUGmap</a>
<a href="/">&raquo; torna alla LugMap&nbsp;</a>
</p>

<table id="lugListTable">
Expand Down Expand Up @@ -113,7 +114,7 @@
<p class="fromRegionLinks">

<?php if ($db_file != null) { ?>
<a href="<?php echo $db_file ?>">&raquo; Elenco in formato CSV</a><br />
<a href="<?php echo $db_file ?>">&raquo; Elenco in formato CSV&nbsp;</a><br />
<?php } else { ?>
<br />
<?php } ?>
Expand Down