Keep Title and Description always

In any properly coded theme the title should be completely generated with wp_title() and easily filterable to specific string (in functions.php or otherwise):

add_filter( 'wp_title', function () {
    return get_bloginfo( 'name' ) . ' | ' . get_bloginfo( 'description' );
} );