yeah i looked at that, but i just don't understand it.
as i mentioned before i am using one page only, and no sidebar, header or footer PHP files
here is my code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please -->
<style type="text/css" media="screen">
@import url( <?php bloginfo('stylesheet_url'); ?> );
</style>
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="Shortcut Icon" href="<?php bloginfo('stylesheet_directory'); ?>/favicon.ico" type="image/x-icon" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php wp_head(); ?>
</head>
<body>
<div id="container"><!-- begin container -->
<div id="sidebar"><!-- begin sidebar -->
<div id="header">
<img src="image.gif" />
<?php bloginfo('name'); ?>
</div>
<div id="desc">
»<?php bloginfo('description'); ?>
</div>
<div id="shortbio">
Contre Coups is the creative studio and portfolio of Eric Duvauchelle focusing on graphic design, web & interaction design, luxury & street brands and soon: <i><b><u>you</u></b></i>.
<br>
<br>
hello{at}contrecoups.com<br>
C: 503.453.6105<br>
</div>
<!-- begin sidebar -->
<h3>Blog,</h3>
<h3>Work,</h3>
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div>
<input class="box" type="text" name="s" id="s" />
<input class="button" type="submit" id="searchsubmit" value="Search" />
</div>
</form>
<!-- begin scroller -->
<div id="contentblock">
<div id="content-wrapper">
<div id="content">
<?php wp_get_archives('type=postbypost&limit=5000&cat=2'); ?>
</div><!-- close content -->
</div><!-- close content wrapper -->
<!--=== DIV::SCROLLBAR ===-->
<div id="scroll-wrapper">
<div id="scroll"></div>
</div>
</div><!-- close contentblock -->
<!-- end scroller -->
<div id="sidebarfooter">
<div class="credit">
Work © to Eric Duvauchelle
Contre Coups 2000/2007
</div>
<?php _e('Feeds'); ?>
" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('RSS Contents'); ?>
</div>
</div><!-- end sidebar -->
<div id="main"><!-- begin main -->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3 class="storytitle"><?php the_title(); ?></h3>
<div class="meta"><?php the_time('Y'); ?>
</div>
<div>
<?php the_content(__('(more...)')); ?>
</div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div><!-- end main -->
</div><!-- end container -->
</body>
</html>