Subversion Repositories Applications.annuaire

Rev

Rev 221 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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