Skip to content

Instantly share code, notes, and snippets.

@cmandesign
Created April 1, 2019 11:40
Show Gist options
  • Save cmandesign/a91a449cb7ecaea6692c548768965c89 to your computer and use it in GitHub Desktop.
Save cmandesign/a91a449cb7ecaea6692c548768965c89 to your computer and use it in GitHub Desktop.
<?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>
<!-- 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