Guest User

Untitled

a guest
May 28th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php $last_articles = $this->children(array('limit'=>25, 'order'=>'page.created_on DESC')); ?>
  2. <?php foreach ($last_articles as $article): ?>
  3. <div class="entry">
  4. <span class="date"><?php echo $article->date('%A'); ?><em><?php echo $article->date('%d'); ?></em></span>
  5. <h3 class="title"><?php echo $article->link($article->title); ?></h3>
  6. <span class="tags"><strong>tags:</strong> <?php echo join(', ', $article->tags()); ?></span>
  7. <?php echo $article->content(); ?>
  8. <span class="read-more"><?php if ($article->hasContent('extended')) echo $article->link('Continue Reading&#133;'); ?></span>
  9. </div>
  10. <?php endforeach; ?>
Add Comment
Please, Sign In to add comment