wordpress 2.8 ()
with the following extensions :
- add-to-any
- categories page
- Event calendar (a custom version for IRI-Theme)
- Executable PHP widget
- FD feedburner
- ggis subscribe
- Google Xml site maple
- post of current category
- page redirection
- related post by category
AND IRI-Theme
<?php get_header(); ?>
<!--START LEFT SIDE-->
<div id="feature" class="column span-15 colborder">
<!--BEGIN FEATURED POST-->
<?php query_posts('name=home'); ?>
<?php while (have_posts()) : the_post(); ?>
<div id="maincontent" class="column span-15 colborder first">
<div class="contentHome">
<div class="category-page-header">
<div id="p2c-header">
<?php the_content(); ?>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
<!--END FEATURED POST-->
<!-- BEGIN THREE AT RIGHT -->
<div class="column span-7 last">
<div id="home_right">
<!-- RESEARCH BOX
<div class="box">
<div>
<h6>Recherche</h6>
<?php getSearch(); ?>
</div>
<div class="cleaner"></div>
</div> -->
<!-- ACTU BOX -->
<h3><a href="?cat=16">Actualités</a></h3>
<?php query_posts('cat=16&posts_per_page=4'); ?>
<?php while (have_posts()) : the_post(); ?>
<hr></hr>
<div class="entry">
<h6>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="title" target="_blank"><?php the_title(); ?></a>
</h6>
</div>
<?php endwhile; ?>
<!--END THREE POSTS AT RIGHT-->
</div>
</div>
<hr></hr>
<?php get_sidebar(); ?>
<?php get_footer(); ?>