Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 0.58 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <div class="post">
  2.   <h2 class="title"><a href="<?= blog_path($post->uri) ?>"><?= $post->title ?></a></h2>
  3.   <div class="date"><?= strftime("%b %e, %Y @ %I:%M %p", strtotime($post->published_at)) ?> — by <?= $post->author->name ?> </div>
  4.   <div class="body"><p><?= $post->excerpt ?></p></div>
  5.   <div class="feedback"><a href="<?= blog_path($post->uri) ?>">Comments (<?= $post->comments_count ?>)</a></div>
  6.   <div class="meta">Tagged with: <? foreach($post->tags as $tag) { echo "<a href=\"".blog_path($tag->uri)."\" class=\"tag\">".$tag->display_name."</a> "; }; ?></div>
  7. </div>