Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

30 строки
1.3 KiB

  1. <div class="ctlg_master block">
  2. <div class="inside-container">
  3. <div class="title-wrapper">
  4. <h1 class="text-center"><?= $this->title; ?></h1>
  5. <span class="subline"><?= $this->subline; ?></span>
  6. </div>
  7. <ul class="tags">
  8. <li class="print<?php if (in_array("Print", $this->filter_tags)){ echo " active"; } ?>">Print</li>
  9. <li class="digital<?php if (in_array("Digital", $this->filter_tags)){ echo " active"; } ?>">Digital</li>
  10. <li class="social<?php if (in_array("Social", $this->filter_tags)){ echo " active"; } ?>">Social</li>
  11. <li class="live<?php if (in_array("Live", $this->filter_tags)){ echo " active"; } ?>">Live</li>
  12. <li class="initiatives<?php if (in_array("Initiative", $this->filter_tags)){ echo " active"; } ?>">Initiatives</li>
  13. </ul>
  14. </div>
  15. <div class="elements-wrapper">
  16. <?= $this->contentElements; ?>
  17. </div>
  18. <div class="related-brands-wrapper">
  19. <span>Related Brands</span>
  20. <ul class="d-flex justify-content-center">
  21. <?php foreach ($this->related_brands as $brand): ?>
  22. <li>
  23. <a href="de/brands/brands-detail/<?php echo $brand[alias]?>.html">
  24. <img src="<?php echo $brand[logo][singleSRC] ?>">
  25. </a>
  26. </li>
  27. <?php endforeach ?>
  28. </ul>
  29. </div>
  30. </div>