Custom Post Type homepage template
I am thinking you probably want get_template_part() to load CPT specific pieces of code. For example (from the Codex): get_template_part( ‘nav’, ‘single’ ); // Navigation bar to use in single pages (nav-single.php) You can then reuse pieces of code on your home page, your CPT archives, etc. You may also find post formats useful, though … Read more