<div id="main">
<?php get_header() ?>
<div id="container">
<div id="rw">
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fmp3box.co&width=292&height=290&show_faces=true&colorscheme=dark&stream=false&border_color=%230000ff&header=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:290px;" allowTransparency="true"></iframe>
</div>
<?php if(have_posts()):?>
<?php while(have_posts()):the_post();?>
<div id="content">
<div id="content-title" >
<h3> <a href="<?php the_permalink();?>"><?php the_title();?></a></h3>
</div>
<div id="content-text">
<?php the_post_thumbnail();?>
<?php the_excerpt(); ?> <-----this code replaced with the_content
</div>
</div>
<?php endwhile;?>
<?php endif;?>
<div style="text-align:center;">
<?php posts_nav_link(' · ', '<--newest' ,'older-->'); ?>
</div>
</div>
<?php get_sidebar() ?>
<?php get_footer() ?>
</div>