wp main loop #wp
<div id="static_content" >
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="container" id="content">
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<?php //get_template_part( 'loop/loop-error' ); ?>
<?php endif; ?>
</div>