Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 19 | Rev 92 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 19 Rev 25
-
 
1
<!-- COL - DEBUT RESULTAT -->
1
<div id="col_resultat">
2
<div id="col_resultat">
2
	<?=$fragmenteur;?>
3
	<?=$fragmenteur;?>
3
	<?php if (isset($infos)) : ?>
4
	<?php if (isset($infos)) : ?>
4
	<ul>
5
	<ul>
5
	<?php foreach ($infos as $info) : ?>
6
	<?php foreach ($infos as $info) : ?>
6
		<li><?=$info['structure']['ville']?> - <a href="<?=$info['structure']['url']?>"><?=$info['structure']['nom']?></a>
7
		<li><?=$info['structure']['ville']?> - <a href="<?=$info['structure']['url']?>"><?=$info['structure']['nom']?></a>
7
			<ul>
8
			<ul>
8
			<?php foreach ($info['collections'] as $collection) : ?>
9
			<?php foreach ($info['collections'] as $collection) : ?>
9
				<li><a href="<?=$collection['url']?>"><?=$collection['nom']?></a></li>
10
				<li><a href="<?=$collection['url']?>"><?=$collection['nom']?></a></li>
10
			<?php endforeach; ?>
11
			<?php endforeach; ?>
11
			</ul>
12
			</ul>
12
		</li>
13
		</li>
13
	<?php endforeach; ?>
14
	<?php endforeach; ?>
14
	</ul>
15
	</ul>
15
	<?php endif; ?>
16
	<?php endif; ?>
16
</div>
-
 
17
17
</div>
-
 
18
<!-- COL - FIN RESULTAT -->
-
 
19
18
20