
<div class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
  <?php if ($this->headline): ?>
    <<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
  <?php endif; ?>
  <?php if($this->message): ?>

  <p class="<?php echo $this->type; ?> message"><?php echo $this->message; ?></p>
  <?php endif; ?>
  <?php if(!empty($this->products)): ?>

  <div class="product_list row no-gutters justify-content-between">

  <?php foreach ($this->products as $product): ?>
    <div<?php echo $product['cssID']; ?> class="col-lg-5 col-md-11 col-24 bg-white border rounded shadow-hover zoom <?php echo $product['class']; ?>">
    <?php echo $product['html']; ?>
    </div>
    <?php endforeach; ?>
  </div>
  <?php endif; ?>

</div>
