here is the page with the top sidebar included:
<?php get_header(); ?>
<?php $bookmarkifyHide=true; ?>
<div class=”right”>
<div class=”container”>
<h2>categories</h2>
<?php
wp_list_categories(‘orderby=name&show_count=1&exclude=1,5,22,23,26,27&title_li=’); ?>
</div>
<div class=”ads”>
<h4>Advertisement</h4>
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar() ) : ?>
<p> </p>
<?php endif; ?>
</div>
<div class=”container”>
<h2>meta info</h2>
<?PHP if (function_exists(‘MiniMetaWidgetSidebar’)) MiniMetaWidgetSidebar(meta); ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div class=”main” id=”<?php the_ID(); ?>”>
<h2>“><?php the_title(); ?></h2>
<div class=”date”><?php the_date(); ?></div>
<p><?php the_content(); ?></p>
<div class=”metabottom”>filed under <?php the_category(‘, ‘) ?> | “>leave a comment </div>
</div> <!– .post –>
<?php endwhile; else : ?>
<div class=”post”>
<h2>Page Not Found</h2>
<p>Looks like the page you’re looking for isn’t here anymore. Try browsing the categories, archives, or using the search box below.</p>
<?php include(TEMPLATEPATH.’/searhform.php’); ?>
</div> <!– .post –>
<?php endif; ?>
<div class=”nextpost”>
<?php next_posts_link(‘« Older Entries’) ?>
<?php previous_posts_link(‘Newer Entries »’) ?>
</div>
<?php get_footer(); ?>