templates/layout/news_newsreader.html5 line 11

Open in your IDE?
  1. <div class="newsreader block <?php echo $this->class?>" itemscope itemtype="http://schema.org/Article">
  2. <?php if ($this->hasMetaFields): ?>
  3. <div class="info"><?php if ($this->date): ?><div class="date" itemprop="datePublished"><?php echo $this->date?></div><?php endif; ?><?php if ($this->author): ?><div class="author"><?php echo $this->author?></div><?php endif; ?><?php if ($this->commentCount): ?><div class="comments"><?php echo $this->commentCount?></div><?php endif; ?></div>
  4. <?php endif; ?>
  5. <?php if ($this->hasSubHeadline): ?>
  6. <?php endif; ?>
  7. <?php echo $this->text?>
  8. <?php if ($this->enclosure): ?>
  9. <div class="enclosure">
  10. <?php foreach ($this->enclosure as $enclosure): ?>
  11. <p><img src="<?php echo $enclosure['icon']; ?>" width="18" height="18" alt="<?php echo $enclosure['title']; ?>" 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>
  12. <?php endforeach; ?>
  13. </div>
  14. <?php endif; ?>