
Untitled
By: a guest on
Aug 10th, 2012 | syntax:
None | size: 0.58 KB | hits: 9 | expires: Never
<div class="post">
<h2 class="title"><a href="<?= blog_path($post->uri) ?>"><?= $post->title ?></a></h2>
<div class="date"><?= strftime("%b %e, %Y @ %I:%M %p", strtotime($post->published_at)) ?> — by <?= $post->author->name ?> </div>
<div class="body"><p><?= $post->excerpt ?></p></div>
<div class="feedback"><a href="<?= blog_path($post->uri) ?>">Comments (<?= $post->comments_count ?>)</a></div>
<div class="meta">Tagged with: <? foreach($post->tags as $tag) { echo "<a href=\"".blog_path($tag->uri)."\" class=\"tag\">".$tag->display_name."</a> "; }; ?></div>
</div>