-
-
Save cmandesign/13390e96ff95f886583efe616c72a006 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php get_header(); ?> | |
| <div id="content" class="narrowcolumn"> | |
| <?php if (have_posts()) : ?> | |
| <?php while (have_posts()) : the_post(); ?> | |
| <!-- START OF LOOP --> | |
| <div class="post"> | |
| <h2 id="post-<?php the_ID(); ?>"> | |
| <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> | |
| <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> | |
| </div> | |
| <!-- Rich Snippet --> | |
| <?php include (TEMPLATEPATH . '/single_post_rich_snippet.php'); ?> | |
| <!-- END OF LOOP --> | |
| <?php endwhile; ?> | |
| <?php else : ?> | |
| <h2 class="center">Not Found</h2> | |
| <p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p> | |
| <?php endif; ?> | |
| </div> | |
| <?php get_sidebar(); ?> | |
| <?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment