WordPress loop - fallback to content.php if other content-*.php files does not exist in child and parent theme:
<?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?>