ZwiiCMS/module/gallery/view/index/index.php

17 lines
641 B
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
<?php if($module::$galleries): ?>
<div class="row galleryRow">
2018-04-02 08:29:19 +02:00
<?php foreach($module::$galleries as $galleryId => $gallery): ?>
<div class="colPicture" 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"
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 endforeach; ?>
</div>
2018-04-02 08:29:19 +02:00
<?php else: ?>
<?php echo template::speech('Aucune galerie.'); ?>
<?php endif; ?>