Blog posts not displaying on blog posts page

Your index.php is calling a template part (template-content/content-blog.php), which logically should contain the post content, but it’s commented out.

Change:
<?php //get_template_part( 'template-content/content', 'blog' ); ?>

To This:
<?php get_template_part( 'template-content/content', 'blog' ); ?>

See if that helps.