equal
deleted
inserted
replaced
|
1 <?php get_header(); ?> |
|
2 <div id="wrapp"> |
|
3 <div id="contentwrap"> |
|
4 <div class="inside"> |
|
5 |
|
6 <?php if (have_posts()) : ?> |
|
7 |
|
8 <?php while (have_posts()) : the_post(); ?> |
|
9 |
|
10 <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> |
|
11 <div class="in2"> |
|
12 <div class="meta"> |
|
13 <span class="date"><?php the_time('M d, y'); ?></span> <span class="author">Posted by <?php the_author(); ?></span> |
|
14 </div> |
|
15 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> |
|
16 |
|
17 <div class="entry"> |
|
18 <?php the_content(''); ?> |
|
19 </div> |
|
20 |
|
21 <p class="postmetadata"><span class="comm"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></span><a class="more-link" href="<?php the_permalink() ?>#more">Read More »</a></p> |
|
22 </div> |
|
23 </div> |
|
24 |
|
25 <?php endwhile; ?> |
|
26 |
|
27 <div class="navigation"> |
|
28 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> |
|
29 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> |
|
30 </div> |
|
31 <?php if (function_exists('wp_pagenavi')) { wp_pagenavi(); } ?> |
|
32 |
|
33 <?php else : ?> |
|
34 |
|
35 <h2 class="center">Not Found</h2> |
|
36 <p class="center">Sorry, but you are looking for something that isn't here.</p> |
|
37 <?php get_search_form(); ?> |
|
38 |
|
39 <?php endif; ?> |
|
40 </div> |
|
41 </div> |
|
42 <?php get_sidebar(); ?> |
|
43 <?php include(TEMPLATEPATH.'/sidebar2.php');?> |
|
44 |
|
45 </div> |
|
46 |
|
47 <?php get_footer(); ?> |