Files
shopPRO/templates/shop-producer/list.php
2024-10-23 13:44:50 +02:00

11 lines
409 B
PHP

<div class="producer-list">
<? foreach ( $this -> producers as $producer ):?>
<div class="producer">
<a href="/producent/<?= \S::seo( $producer['name'] );?>">
<? if ( file_exists( substr( $producer['img'], 1, strlen( $producer['img'] ) ) ) ):?>
<img src="<?= $producer['img'];?>" alt="<?= $producer['name'];?>">
<? endif;?>
</a>
</div>
<? endforeach;?>
</div>