Subversion Repositories Applications.annuaire

Rev

Rev 221 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
428 aurelien 1
<ul class="liste_horizontale_simple">
2
 
3
	<li>
4
		<a href="<?= $url_carte_monde ?>"> Carte du monde </a>
5
	</li>
6
 
7
	<?php if(isset($url_continent) && trim($url_continent) != '') { ?>
8
		<li>
9
			<span> >     </span>
10
			<a href="<?= $url_continent ?>"> <?= $nom_continent ?> </a>
11
		</li>
12
	<?php } ?>
13
 
14
	<?php if(isset($url_pays) && trim($url_pays) != '') { ?>
15
	<li>
16
		<span> >     </span>
17
		<a href="<?= $url_pays ?>"> <?= $nom_pays ?> </a>
18
	</li>
19
	<?php } ?>
20
 
21
	<?php if(isset($url_departement) && trim($url_departement) != '') { ?>
22
	<li >
23
		<span> >    </span>
24
		<a href="<?= $url_departement ?>"> <?= $nom_departement ?> </a>
25
	</li>
26
	<?php } ?>
27
 
28
</ul>
29
 
221 aurelien 30
<hr class="separation" />