equal
deleted
inserted
replaced
|
1 <?php get_header(); ?> |
|
2 <div class="column span-17 colborder first" id="maincontent"> |
|
3 <div class="content"> |
|
4 <?php |
|
5 |
|
6 //$my_query = new WP_Query('showposts=8'); |
|
7 //while ($my_query->have_posts()) : $my_query->the_post(); |
|
8 |
|
9 // Don't show featured item |
|
10 //if ($post->ID == $featuredID) continue; |
|
11 |
|
12 while (have_posts()) : the_post(); |
|
13 |
|
14 ?> |
|
15 |
|
16 <?php getPost($post); ?> |
|
17 |
|
18 <?php endwhile; ?> |
|
19 |
|
20 <div class="alignleft"><?php next_posts_link('« Précédent') ?></div> |
|
21 <div class="alignright"><?php previous_posts_link('Suivant »') ?></div> |
|
22 </div> |
|
23 </div> |
|
24 |
|
25 <div class="column span-6 last"> |
|
26 <?php include (TEMPLATEPATH . '/sidebar_single.php'); ?> |
|
27 </div> |
|
28 <hr></hr> |
|
29 <?php get_sidebar(); ?> |
|
30 <?php get_footer(); ?> |