35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
|
|
<div id="topBackPosition" class="row <?php echo $module::$config['backPosition'] . ' ' . $module::$config['backAlign'];?>">
|
|
<div class="col1">
|
|
<?php echo template::button('galleryGalleryBack', [
|
|
'class' => 'buttonGrey',
|
|
'href' => helper::baseUrl() . $this->getUrl(0),
|
|
'value' => template::ico('left')
|
|
]); ?>
|
|
</div>
|
|
</div>
|
|
<div id="pictureContainer" class="row galleryRow <?php echo ($module::$config['fullScreen']);?> ">
|
|
<?php foreach($module::$pictures as $picture => $legend): ?>
|
|
<div class="colPicture">
|
|
<a
|
|
href="<?php echo helper::baseUrl(false) . $picture; ?>"
|
|
<?php if ( strpos($picture, $module::$config['homePicture']) > 1) { echo 'id="homePicture"'; } ?>
|
|
class="galleryGalleryPicture"
|
|
style="background-image:url('<?php echo helper::baseUrl(false) . $module::$thumbs[$picture]; ?>')"
|
|
data-caption="<?php echo $legend; ?>"
|
|
>
|
|
<?php if($legend): ?>
|
|
<div class="galleryGalleryName"><?php echo $legend; ?></div>
|
|
<?php endif; ?>
|
|
</a>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<div id="bottomBackPosition" class="row <?php echo $module::$config['backPosition'] . ' ' . $module::$config['backAlign'];?>">
|
|
<div class="col1">
|
|
<?php echo template::button('galleryGalleryBack', [
|
|
'href' => helper::baseUrl() . $this->getUrl(0),
|
|
'value' => template::ico('left')
|
|
]); ?>
|
|
</div>
|
|
</div>
|