first commit

This commit is contained in:
2023-09-04 21:59:34 +02:00
commit 650ef5b3e1
196 changed files with 24080 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<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>