Skip to content

Instantly share code, notes, and snippets.

@diepvienkvb
Created September 15, 2012 09:34
Show Gist options
  • Select an option

  • Save diepvienkvb/3727119 to your computer and use it in GitHub Desktop.

Select an option

Save diepvienkvb/3727119 to your computer and use it in GitHub Desktop.
index.php
<?php get_header(); ?>
<div id="main">
<div id="content">
<h1>Main Content Area</h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<h4>Posted on <?php the_time('F jS, Y') ?></h4>
<p><?php the_content(__('(more...)')); ?></p>
<hr>
<?php endwhile; else: ?>
<p><?php _e('Sorry, we couldn’t find the post you are looking for.'); ?></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<div id="delimiter"></div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment