Created
April 1, 2019 11:40
-
-
Save cmandesign/a91a449cb7ecaea6692c548768965c89 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> | |
<!-- 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