is_static_frontpage()

Returns a boolean to check whether the front page is a static page and not the blog.

function is_static_frontpage() {
	return ( is_front_page() && ! is_home() );
}