<?php get_header();?>
<div class="main-container">
<?php if(have_posts()):?><?php while(have_posts()):the_post();?>
<div class="post-title-big">
<a href="<?php the_permalink();?>" title="<?php the_title();?>">
<?php the_title();?>
</a>
</div><!--post-title-->
<div class="post-content">
<?php the_content();?>
</div><!--post-content-->
<?php wp_link_pages('before=<div id="page-links">Page&after=</div>'); ?>
<?php endwhile;?>
<?php endif;?>
</div><!--main-container-->
<?php get_sidebar();?>
<?php get_footer();?>