Skip to content

Instantly share code, notes, and snippets.

@aaronpk
Created November 25, 2012 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaronpk/dd700fb9f4b812c72de6 to your computer and use it in GitHub Desktop.
Save aaronpk/dd700fb9f4b812c72de6 to your computer and use it in GitHub Desktop.
<?php
echo '<li class="hentry">';
echo '<h3 class="entry-title"><a href="' . $page->permalink . '">' . $page->title . '</a></h3>';
echo '<abbr class="date published updated" title="' . $page->date->format('c') . '"><a href="' . $page->permalink . '" rel="bookmark">' . $page->date->format('F j, Y g:ia T') . '</a></abbr>';
echo '<div class="entry-summary">' . ($page->summary ?: $page->html) . '</div>';
echo '<a href="' . $page->permalink . '" class="continue-reading">Continue reading "' . $page->title . '" &rarr;</a>';
echo '<div class="author vcard"><a href="http://aaronparecki.com/" rel="author" class="url fn">Aaron Parecki</a></div>';
echo '</li>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment