Created
September 15, 2012 09:34
-
-
Save diepvienkvb/3727119 to your computer and use it in GitHub Desktop.
index.php
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="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