You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

41 lines
1.3 KiB

  1. <div class="layout_full block<?= $this->class ?>" itemscope itemtype="http://schema.org/Article">
  2. <div class="title">
  3. <p class="categories">Bauer Advance <?= implode(', ', $this->categoriesList) ?></p>
  4. <h1 itemprop="name"><?= $this->newsHeadline ?></h1>
  5. </div>
  6. <?php if ($this->hasSubHeadline): ?>
  7. <h2 itemprop="headline"><?= $this->subHeadline ?></h2>
  8. <?php endif; ?>
  9. <?php if ($this->hasText): ?>
  10. <?= $this->text ?>
  11. <?php else: ?>
  12. <div class="ce_text block">
  13. <?php if (!$this->addBefore): ?>
  14. <?= $this->teaser ?>
  15. <?php endif; ?>
  16. <?php if ($this->addImage): ?>
  17. <?php $this->insert('image', $this->arrData); ?>
  18. <?php endif; ?>
  19. <?php if ($this->addBefore): ?>
  20. <?= $this->teaser ?>
  21. <?php endif; ?>
  22. </div>
  23. <?php endif; ?>
  24. <?php if ($this->enclosure): ?>
  25. <ul class="enclosure">
  26. <?php foreach ($this->enclosure as $enclosure): ?>
  27. <li class="download-element ext-<?= $enclosure['extension'] ?>">
  28. <a href="<?= $enclosure['href'] ?>" title="<?= $enclosure['title'] ?>"><?= $enclosure['link'] ?> <span class="size">(<?= $enclosure['filesize'] ?>)</span></a>
  29. </li>
  30. <?php endforeach; ?>
  31. </ul>
  32. <?php endif; ?>
  33. </div>