Guest User

Untitled

a guest
May 28th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <?php $article = $this->find('/articles/'); ?>
  2.  
  3. <div id="articles">
  4.  
  5. <?php for ($i=0, $i<=9; $i+=3) { ?>
  6. <div class="entry">
  7. <span class="date"><?php echo $article->date('%A'); ?><em><?php echo $article->date('%d'); ?></em></span>
  8. <h3 class="title"><?php echo $article->link($article->title); ?></h3>
  9. <span class="tags"><strong>tags:</strong> <?php echo join(', ', $article->tags()); ?></span>
  10. <?php echo $article->content(); ?>
  11. <span class="read-more"><?php if ($article->hasContent('extended')) echo $article->link('Continue Reading&#133;'); ?></span>
  12. </div>
  13. <?php if ($i < 3) { echo '<span class="clear-left"></span>'; } } ?>
  14.  
  15. </div>
Add Comment
Please, Sign In to add comment