Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php get_header(); ?>
- <div id="main">
- <nav id="leftbar">
- This is the left sidebar content
- </nav>
- <aside id="rightbar">
- This is the right sidebar content
- </aside>
- <article>
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
- <nav id="breadcrumbs">
- home > next level > this page
- </nav>
- <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
- <?php the_content(__('Read more'));?>
- <footer id="pagefoot">
- Author: <?php the_author_posts_link(); ?><br />
- Categories: <?php the_category(' • '); ?><br />
- <?php the_tags( 'Tags: ', ', ', '<br />'); ?>
- last updated: <?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