templates/hideaway4you/news_full_blog.html5 line 14

Open in your IDE?
  1. <div class="layout_full block<?php echo $this->class; ?>">
  2. <h1><?php echo $this->newsHeadline; ?></h1>
  3. <?php if ($this->hasMetaFields): ?>
  4. <p class="info"><time datetime="<?php echo $this->datetime; ?>"><?php echo date("d.m.Y", strtotime($this->date)); ?></time> <?php echo $this->author; ?> <?php echo $this->commentCount; ?></p>
  5. <?php endif; ?>
  6. <?php if ($this->hasSubHeadline): ?>
  7. <h2><?php echo $this->subHeadline; ?></h2>
  8. <?php endif; ?>
  9. <?php if ($this->text): ?>
  10. <?php echo $this->text; ?>
  11. <?php else: ?>
  12. <div class="ce_text block">
  13. <?php echo $this->teaser; ?>
  14. </div>
  15. <?php endif; ?>
  16. <?php if ($this->enclosure): ?>
  17. <div class="enclosure">
  18. <?php foreach ($this->enclosure as $enclosure): ?>
  19. <p><img src="<?php echo $enclosure['icon']; ?>" width="18" height="18" alt="<?php echo $enclosure['mime']; ?>" class="mime_icon"> <a href="<?php echo $enclosure['href']; ?>" title="<?php echo $enclosure['title']; ?>"><?php echo $enclosure['link']; ?> <span class="size">(<?php echo $enclosure['filesize']; ?>)</span></a></p>
  20. <?php endforeach; ?>
  21. </div>
  22. <?php endif; ?>
  23. </div>