Files
rm.rzeszow.pl/templates/articles/article-gallery.php
2023-09-04 21:59:34 +02:00

16 lines
539 B
PHP

<div id='article_gallery_<?= $this -> _id;?>' class="art_gallery">
<?
if ( isset( $this -> _images ) && is_array( $this -> _images ) ) foreach ( $this -> _images as $img )
{
$src = trim( strip_tags( $img['src'] ) );
?>
<a href='<?= $src;?>' class="fancybox-buttons" rel='<?= $this -> _id;?>'>
<div class="gallery_picture">
<div style="background: url( 'resources/thumber.php?img=<?= $src;?>&h=150&w=150' ) no-repeat center;"></div>
</div>
</a>
<?
}
?>
<p style="clear: both;"></p>
</div>