Option 1 – In theory yes…
If you want to try then this would be my approach:
1. copy the GP archive.php template as the basis for your front-page.php
2. Now you need a blank page for your Blog and another one for a Static Home Page. And set them accordingly in Settings > Reading. That should allow you to have a separate blog. And the front-page.php will override the static home page.
3. Then filter the front page so it shows just your custom post type with this snippet:
add_filter( 'pre_get_posts', function( $query ) {
if ( is_front_page() && $query->is_main_query() )
$query->set( 'post_type', array( 'your_custom_post_type_here') );
return $query;
});
Or create your own custom loop in the front-page template.
4. Create your Content Template and set its Display Rules to: Front Page
Thats the theory anyway 🙂
GB 1.5 – hard to give a definite timeline at this stage, as we’re still in Alpha, i would like to think no more than 1 month,