first commit

This commit is contained in:
2024-10-30 22:46:16 +01:00
commit 5acce9fb6c
558 changed files with 37025 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<div id="banners-container">
<? if ( is_array( $this -> banners ) ): foreach ( $this -> banners as $banner ):?>
<div class="mini-banner" <? if ( $banner['languages']['url'] ):?>onClick="document.location.href='<?= $banner['languages']['url'];?>'; return false;"<? endif;?> <? if ( $banner['languages']['src'] ):?>style="background-image: url( '<?= $banner['languages']['src'];?>' );"<? endif;?>>
<? if ( $banner['languages']['html'] ): echo $banner['languages']['html']; endif;?>
<? if ( $banner['languages']['text'] ): echo $banner['languages']['text']; endif;?>
</div>
<? endforeach; endif;?>
</div>