2018-04-02 08:29:19 +02:00
|
|
|
<?php if($module::$galleries): ?>
|
|
|
|
<?php $i = 1; ?>
|
|
|
|
<?php $galleriesNb = count($module::$galleries); ?>
|
|
|
|
<?php foreach($module::$galleries as $galleryId => $gallery): ?>
|
|
|
|
<?php if($i % 2 === 1): ?>
|
|
|
|
<div class="row">
|
2020-02-22 22:18:49 +01:00
|
|
|
<?php endif; ?>
|
2020-04-04 10:27:14 +02:00
|
|
|
<div class="col6" div="pos<?php echo $gallery['config']['position']; ?>" >
|
2018-04-02 08:29:19 +02:00
|
|
|
<a
|
|
|
|
href="<?php echo helper::baseUrl() . $this->getUrl(0); ?>/<?php echo $galleryId; ?>"
|
|
|
|
class="galleryPicture"
|
2020-04-05 18:02:34 +02:00
|
|
|
style="background-image:url('<?php echo $module::$firstPictures[$galleryId];?>')"
|
2018-04-02 08:29:19 +02:00
|
|
|
>
|
|
|
|
<div class="galleryName"><?php echo $gallery['config']['name']; ?></div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<?php if($i % 2 === 0 OR $i === $galleriesNb): ?>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php $i++; ?>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php echo template::speech('Aucune galerie.'); ?>
|
|
|
|
<?php endif; ?>
|