This is the code from my landing page php
<?php
/**
* The Template for displaying all single posts.
*/
get_header(); ?>
<div class=”ci-content-sidebar-right”>
<div class=”ci-content-positioner”>
<div id=”blog” class=”blog-single”>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div class=”singlepost”>
<div class=”entry”>
<div class=”ci-clear”></div>
</div>
<div class=”ci-posttext-container”>
<div class=”ci-post-text”>
<?php the_content(”); ?>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
<div class=”ci-widgetarea-sidebar”>
<?php
lp_conversion_area(); /*print out form content*/
?>
</div>
<div class=”ci-clear”></div>
</div>
<?php get_footer(); ?>
</div>