1 | <?php get_header(); ?>
|
---|
2 |
|
---|
3 | <div id="topcurve"></div>
|
---|
4 | <div id="main">
|
---|
5 | <div id="content">
|
---|
6 |
|
---|
7 | <?php if (have_posts()) : ?>
|
---|
8 | <?php while (have_posts()) : the_post(); ?>
|
---|
9 |
|
---|
10 | <div class="post">
|
---|
11 | <h2 class="postTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
|
---|
12 | <p class="postMeta">Posted <?php the_time('M.d, Y') ?> in <?php the_category(', '); ?></p>
|
---|
13 | <div class="postContent"><?php the_content('(continue reading...)'); ?></div>
|
---|
14 | <div class="cleared"></div>
|
---|
15 | <div class="postMetaBottom">
|
---|
16 | <p class="postMetaComments"><?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p>
|
---|
17 | <p class="postMetaTags"><?php the_tags('Tags: ', ', ', ''); ?></p>
|
---|
18 | <div class="cleared"></div>
|
---|
19 | </div>
|
---|
20 | </div> <!-- Closes Post -->
|
---|
21 |
|
---|
22 | <?php endwhile; ?>
|
---|
23 | <?php else : ?>
|
---|
24 | <div class="post">
|
---|
25 | <h2 class="postTitle">Not Found</h2>
|
---|
26 | <div class="postContent"><p>Sorry, but you are looking for something that isn't here.</p></div>
|
---|
27 | </div> <!-- Closes Post -->
|
---|
28 | <?php endif; ?>
|
---|
29 | </div> <!-- Closes Content -->
|
---|
30 |
|
---|
31 | <?php get_sidebar(); ?>
|
---|
32 | <div class="cleared"></div>
|
---|
33 | </div> <!-- Closes Main -->
|
---|
34 |
|
---|
35 | <div id="pagenav">
|
---|
36 | <div class="alignleft"><?php posts_nav_link('','','« Previous Entries') ?></div>
|
---|
37 | <div class="alignright"><?php posts_nav_link('','Next Entries','') ?></div>
|
---|
38 | <div class="cleared"></div>
|
---|
39 | </div>
|
---|
40 |
|
---|
41 | <?php get_footer(); ?>
|
---|