File: D:/HostingSpaces/SBogers10/promic.komma.pro/wwwroot/product_data/home_list.php
<?php
$products = [
[
'name' => 'Pop-Ups',
'img' => 'pop_ups.jpg',
'link' => '/pop-ups/'
],
[
'name' => 'Zipper-Walls',
'img' => 'zipper_walls.jpg',
'link' => '/zipper-walls/'
],
[
'name' => 'Roll-Banners',
'img' => 'roll_banners.jpg',
'link' => '/roll-banners/'
],
[
'name' => 'Banner Stands',
'img' => 'banner-stands.jpg',
'link' => '/banner-stands/'
],
[
'name' => 'Lightboxes',
'img' => 'lightboxes.jpg',
'link' => '/lightboxes/'
],
[
'name' => 'Lighting',
'img' => 'lighting.jpg',
'link' => '/lighting/'
],
[
'name' => 'Counters',
'img' => 'counters.jpg',
'link' => '/counters/'
],
[
'name' => 'Table Covers',
'img' => 'table-covers.jpg',
'link' => '/table-covers/'
],
[
'name' => 'Information Systems',
'img' => 'flex.jpg',
'link' => '/information-systems/'
],
// [
// 'name' => 'Brochure Holders',
// 'img' => 'brochure_holders.jpg',
// 'link' => '/brochure-holders/'
// ],
// [
// 'name' => 'Poster Holders',
// 'img' => 'poster_holders.jpg',
// 'link' => '/poster-holders/'
// ],
[
'name' => 'Outdoor',
'img' => 'outdoor.jpg',
'link' => '/outdoor/'
],
[
'name' => 'Flags',
'img' => 'flags.jpg',
'link' => '/flags/'
],
[
'name' => 'Cases',
'img' => 'cases.jpg',
'link' => '/cases/'
],
];
?>
<ul id="productsHome">
<?php
foreach ($products as $key => $product)
{
?>
<li <?php if($key % 3 == 0)
{ ?> class="leftSide" <?php } ?> >
<?php if($key % 3 == 0)
{ ?>
<div class="shadow"></div> <?php } ?>
<img width="182" src="/img/product_overzicht/<?php echo $product['img']; ?>"/>
<div class="content">
<div class="name"><a href="<?php echo('/'.$_SESSION['taal_table']['language'].'/'.$_SESSION['taal_table']['url']['producten']); ?><?php echo $product['link']; ?>"><?php echo $product['name']; ?></a><span class="arrowRight"></span></div>
<div class="button">
<a class="ctaButton buttonDown">
<span class="left"><span class="text"><?php echo($_SESSION['taal_table']['text']['meer_informatie']); ?></span><span class="up"></span><span class="hover"></span></span>
<span class="right"><span class="icon arrowRight"></span><span class="up"></span><span class="hover"></span></span>
</a>
</div>
</div>
</li>
<?php
}
?>
</ul>