ZwiiCMS, le gestionnaire de site Web sans base de données à installer.
Conçu en 2008 par Rémi Jean, le développement a été repris par Frédéric Tempez en 2018.
zwii cms nosql json flat file
https://www.zwiicms.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
989 B
36 lines
989 B
<div class="row"> |
|
<div class="col2"> |
|
<?php echo template::button('galleryGalleryBack', [ |
|
'class' => 'buttonGrey', |
|
'href' => helper::baseUrl() . $this->getUrl(0), |
|
'ico' => 'left', |
|
'value' => 'Retour' |
|
]); ?> |
|
</div> |
|
</div> |
|
<?php $i = 1; ?> |
|
<?php $picturesNb = count($module::$pictures); ?> |
|
<?php foreach($module::$pictures as $picture => $legend): ?> |
|
<?php if($i % 4 === 1): ?> |
|
<div class="row"> |
|
<?php |
|
endif; |
|
$thumb_url = str_replace("source", "thumb", helper::baseUrl(false) . $picture); |
|
?> |
|
<div class="col3"> |
|
<a |
|
href="<?php echo helper::baseUrl(false) . $picture; ?>" |
|
class="galleryGalleryPicture" |
|
style="background-image:url('<?php echo $thumb_url; ?>')" |
|
data-caption="<?php echo $legend; ?>" |
|
> |
|
<?php if($legend): ?> |
|
<div class="galleryGalleryName"><?php echo $legend; ?></div> |
|
<?php endif; ?> |
|
</a> |
|
</div> |
|
<?php if($i % 4 === 0 OR $i === $picturesNb): ?> |
|
</div> |
|
<?php endif; ?> |
|
<?php $i++; ?> |
|
<?php endforeach; ?>
|
|
|