|
- <div class="ctlg_master block">
- <div class="inside-container">
- <div class="title-wrapper">
- <h1 class="text-center"><?= $this->title; ?></h1>
- <span class="subline"><?= $this->subline; ?></span>
- </div>
- <ul class="tags">
- <li class="print<?php if (in_array("Print", $this->filter_tags)){ echo " active"; } ?>">Print</li>
- <li class="digital<?php if (in_array("Digital", $this->filter_tags)){ echo " active"; } ?>">Digital</li>
- <li class="social<?php if (in_array("Social", $this->filter_tags)){ echo " active"; } ?>">Social</li>
- <li class="live<?php if (in_array("Live", $this->filter_tags)){ echo " active"; } ?>">Live</li>
- <li class="initiatives<?php if (in_array("Initiative", $this->filter_tags)){ echo " active"; } ?>">Initiatives</li>
- </ul>
- </div>
- <div class="elements-wrapper">
- <?= $this->contentElements; ?>
- </div>
- <div class="related-brands-wrapper">
- <span>Related Brands</span>
- <ul class="d-flex justify-content-center">
- <?php foreach ($this->related_brands as $brand): ?>
- <li>
- <a href="de/brands/brands-detail/<?php echo $brand[alias]?>.html">
- <img src="<?php echo $brand[logo][singleSRC] ?>">
- </a>
- </li>
- <?php endforeach ?>
- </ul>
- </div>
- </div>
|