equal
deleted
inserted
replaced
|
1 <?php get_header(); ?> |
|
2 <!--START LEFT SIDE--> |
|
3 <div id="feature" class="column span-15 colborder"> |
|
4 <!--BEGIN FEATURED POST--> |
|
5 <?php query_posts('name=home'); ?> |
|
6 <?php while (have_posts()) : the_post(); ?> |
|
7 <div id="maincontent" class="column span-15 colborder first"> |
|
8 <div class="contentHome"> |
|
9 <div class="category-page-header"> |
|
10 <div id="p2c-header"> |
|
11 <?php the_content(); ?> |
|
12 </div> |
|
13 </div> |
|
14 </div> |
|
15 </div> |
|
16 <?php endwhile; ?> |
|
17 </div> |
|
18 <!--END FEATURED POST--> |
|
19 <!-- BEGIN THREE AT RIGHT --> |
|
20 <div class="column span-7 last"> |
|
21 <div id="home_right"> |
|
22 |
|
23 <!-- RESEARCH BOX |
|
24 <div class="box"> |
|
25 <div> |
|
26 <h6>Recherche</h6> |
|
27 <?php getSearch(); ?> |
|
28 </div> |
|
29 <div class="cleaner"></div> |
|
30 </div> --> |
|
31 <!-- ACTU BOX --> |
|
32 |
|
33 <h3><a href="?cat=16">Actualités</a></h3> |
|
34 <?php query_posts('cat=16&posts_per_page=4'); ?> |
|
35 <?php while (have_posts()) : the_post(); ?> |
|
36 <hr></hr> |
|
37 <div class="entry"> |
|
38 <h6> |
|
39 <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="title" target="_blank"><?php the_title(); ?></a> |
|
40 </h6> |
|
41 </div> |
|
42 <?php endwhile; ?> |
|
43 <!--END THREE POSTS AT RIGHT--> |
|
44 |
|
45 |
|
46 </div> |
|
47 </div> |
|
48 <hr></hr> |
|
49 |
|
50 <?php get_sidebar(); ?> |
|
51 <?php get_footer(); ?> |