[2] | 1 | <?php
|
---|
| 2 | /************************************************************************/
|
---|
| 3 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
| 4 | /* by Luciano Apolito & Roberto Gigli */
|
---|
| 5 | /* http://www.eleonline.it */
|
---|
| 6 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
| 7 | /************************************************************************/
|
---|
[318] | 8 | global $csv,$is_mobile,$descr_com;
|
---|
[2] | 9 | if (!$csv)
|
---|
| 10 | piede();
|
---|
| 11 | $PHP_SELF=$_SERVER['PHP_SELF'];
|
---|
[20] | 12 | if (stristr($PHP_SELF,"footer.php")) {
|
---|
[2] | 13 | Header("Location: index.php");
|
---|
| 14 | die();
|
---|
| 15 | }
|
---|
[158] | 16 | include("versione.php");
|
---|
[2] | 17 | echo "<table><tr align=\"center\"><td>
|
---|
| 18 | <div> "._INVIOSEGN." <a href=\"modules.php?name=Elezioni&file=index&op=contatti\"> "._CLICCAQUI."</a> ";
|
---|
| 19 |
|
---|
[230] | 20 |
|
---|
| 21 | if($is_mobile) //variabile presa dall'header per il riconoscimento del mobile
|
---|
| 22 | echo "<br /><h1><a href=\"modules.php?name=Elezioni&nocell=0\">Versione Mobile - Smartphone e Tablet</a></h1>";
|
---|
[2] | 23 |
|
---|
[230] | 24 |
|
---|
[2] | 25 | /************************************************************************/
|
---|
| 26 | /* LE SEGUENTI LINEE DI PROGRAMMA NON DEVONO ESSERE MODIFICATE */
|
---|
| 27 | /************************************************************************/
|
---|
| 28 |
|
---|
[158] | 29 | echo "<br />[<a href=\"http://www.eleonline.it\"><b>Eleonline $versione</b></a> - "._GESRIS." ]<br />
|
---|
[230] | 30 | <!-- <a href=\"modules.php?name=Elezioni&op=evvai\">Gruppo di lavoro "._COMUNE." $descr_com</a> -->
|
---|
[129] | 31 | <br /><br /></div>";
|
---|
| 32 | //global $id_comune;
|
---|
[2] | 33 |
|
---|
[129] | 34 | if($id_comune!="58047"){
|
---|
| 35 |
|
---|
| 36 | echo '
|
---|
| 37 |
|
---|
[2] | 38 | <!-- w3c -->
|
---|
| 39 | <div class="w3cbutton3">
|
---|
| 40 | <a href="http://www.w3.org/WAI/WCAG1AA-Conformance" title="pagina di spiegazione degli standard">
|
---|
| 41 | <span class="w3c">W3C</span>
|
---|
| 42 | <span class="spec">WAI-<span class="specRed">AA</span></span>
|
---|
| 43 | </a>
|
---|
| 44 | </div>
|
---|
| 45 | <div class="w3cbutton3">
|
---|
| 46 | <a href="http://jigsaw.w3.org/css-validator/" title="Validatore css">
|
---|
| 47 | <span class="w3c">W3C</span>
|
---|
| 48 | <span class="spec">CSS</span>
|
---|
| 49 | </a>
|
---|
| 50 | </div>
|
---|
| 51 | <div class="w3cbutton3">
|
---|
| 52 | <a href="http://validator.w3.org/" title="Validatore XHTML ">
|
---|
| 53 | <span class="w3c">W3C</span>
|
---|
| 54 | <span class="spec">XHTML 1.0</span>
|
---|
| 55 | </a>
|
---|
[129] | 56 | </div>';
|
---|
| 57 | }
|
---|
| 58 | echo '</td></tr></table>';
|
---|
[2] | 59 | echo "</body>\n"
|
---|
| 60 | ."</html>";
|
---|
| 61 | die();
|
---|
| 62 | ?>
|
---|
| 63 |
|
---|