Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php get_header(); ?>
- <div id="main">
- <nav id="leftbar">
- <?php include (TEMPLATEPATH . '/sidebar-left.php'); ?>
- </nav>
- <aside id="rightbar">
- <?php include (TEMPLATEPATH . '/sidebar-right.php'); ?>
- </aside>
- <article>
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
- <h1><?php the_title(); ?></h1>
- <p class="ByLine"><?php the_author_posts_link(); ?></p>
- <?php the_content(__('Read more'));?>
- <footer id="pagefoot">
- Categories: <?php the_category(' • '); ?><br />
- <?php the_tags( 'Tags: ', ', ', '<br />'); ?>
- Date published: <?php the_modified_date(); ?>
- </footer>
- <?php endwhile; else: ?>
- <p><?php _e('Sorry, no pages or posts matched your request.'); ?></p>
- <?php endif; ?>
- </article>
- </div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement