found it! you have to first bring in a showcase.php file to your child theme.
then at about line 160, you should see something like this:
// Display our recent posts, showing full content for the very latest, ignoring Aside posts.
$recent_args = array(
'order' => 'DESC',
'posts_per_page' => 10,
'post__not_in' => get_option( 'sticky_posts' ),
'post_type'=>'post',
'tax_query' => array(
array(
'taxonomy' => 'post_format',
'terms' => array( 'post-format-aside', 'post-format-image', 'post-format-link', 'post-format-quote', 'post-format-status' ),
the “posts_per_page” line you would have to add to that array. In this case it would show 10. Change that number to whatever you would want.
Hope this helps you, or whoever else may be looking for a solution.