forked from ZwiiCMS-Team/ZwiiCMS
24 lines
803 B
PHP
Executable File
24 lines
803 B
PHP
Executable File
<?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">
|
|
<?php endif; ?>
|
|
<div class="col6">
|
|
<a
|
|
href="<?php echo helper::baseUrl() . $this->getUrl(0); ?>/<?php echo $galleryId; ?>"
|
|
class="galleryPicture"
|
|
style="background-image:url('<?php echo helper::baseUrl(false) . $module::$firstPictures[$galleryId]; ?>')"
|
|
>
|
|
<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; ?>
|