How to display Projects instead of posts on Posts page
Before:
After:
Edit theme's index.php.
Add the following above <?php if ( have_posts() ) : ?>
<?php if(is_home()) { query_posts(array('post_type'=>'builder_projects', 'paged' => get_query_var( 'paged' ) ) ); } ?>