Hey. In content-extensions.php find this:
<?php $header_image = get_header_image();
if ( ! empty( $header_image ) ) : ?>
<img src=”<?php echo esc_url( $header_image ); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” class=”header-image” />
<?php endif;
and change to:
<?php $header_image = get_header_image();
if ( ! empty( $header_image ) && is_front_page() ) { ?>
<img src=”<?php echo esc_url( $header_image ); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” class=”header-image” />
<?php }