The error had to do with a custom page template I copied from the X Pro theme to the child theme and those pages that had the theme applied were causing the issue. I moved the whole /framework/views/starter/ to the child theme, I copied template-blank-4.php and changed the name that that breaks.
The filename I changed it to was template-location.php and the content was:
<?php
// Custom (Location | No Container | Header, Footer)
get_header();
?>
<?php while ( have_posts() ) : the_post(); ?>
>
<?php x_get_view( 'global', '_content', 'the-content' ); ?>
<?php endwhile; ?>
<?php get_footer(); ?>
And now it doesn’t show up as a template. I it only showed up as a template when I started the code with <?php /* Custom (Location | No Container | Header, Footer)*/ ?> but that broke Cornerstone apparently.