Guest User

Untitled

a guest
Oct 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  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>
Add Comment
Please, Sign In to add comment