Remove get_template_part() from custom theme

you could do it the opposite way:

<?php
if ( !is_page('blog') ) {
 get_template_part('the', 'blog');
}
?>

this would make it show up on all pages but the blog.