Subversion Repositories Applications.galerie

Rev

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

Rev Author Line No. Line
2 jp_milcent 1
<!-- GALLERIE - DEBUT -->
2
<?php if ($erreur) : ?>
3
 
4
<p class="pap_erreur"><?=$erreur;?></p>
5
 
6
<?php else : ?>
7
<!-- Source : provient de "Simple Image Gallery" (in content items) Plugin for Joomla 1.0.x - Version 1.0. -->
8
<link href="<?=$css['chemin'];?>sig.css" rel="stylesheet" type="text/css" />
9
<style type="text/css">
10
	.sig_thumb {width:<?=$css['largeur'];?>px;} /* add to the width the total image padding and borders you set in the css file */
11
</style>
12
<script type="text/javascript" src="<?=$script['chemin'];?>mootools.js"></script>
13
<script type="text/javascript" src="<?=$script['chemin'];?>slimbox.js"></script>
14
<div class="sig">
15
<?php foreach ($images as $image) : ?>
16
	<div class="sig_thumb">
17
		<a href="<?=$image['url_img'];?>" rel="lightbox" title="<?=$image['fichier_nom'];?>">
18
			<img src="<?=$image['url_img_mini'];?>" alt="<?=$image['fichier_nom'];?>"/>
19
		</a>
20
	</div>
21
<?php endforeach; ?>
22
	<div class="sig_clr">&nbsp;</div>
23
</div>
24
<?php endif; ?>
25
<!-- GALLERIE - FIN -->