File: D:/HostingSpaces/HBergman/dezaakpartners.nl/wwwroot/wp-content/themes/pinzolo/header.php
<!doctype html>
<!--[if lt IE 7 ]> <html class="no-js ie6 ie" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 7 ]> <html class="no-js ie7 ie" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 8 ]> <html class="no-js ie8 ie" <?php language_attributes(); ?>> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html class="no-js ie" <?php language_attributes(); ?>> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title>
<?php wp_title('‹',true,'right'); ?>
<?php bloginfo('name'); ?>
</title>
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<?php
$link_color = get_option('link_color', '#56B33D');
$head_text_color = get_header_textcolor();
$heading_color = get_option('head_color', '#000000');
$border = get_option('border');
$logo = get_option('logo');
?>
<style type="text/css" id="custom-colour-css">
.dets ul a, .dets p a, .content a, footer a:hover { color: <?php echo $link_color; ?>; }
#logoContainer h1, #logoContainer h1 a, #logoContainer h1 a:hover { color: #<?php echo $head_text_color; ?>; }
#logoContainer p{ color: #<?php echo $head_text_color; ?>; }
article .dets h2 a, h1, h2, h3{ color: <?php echo $heading_color; ?> ; }
<?php if( !$border ): ?>
#wrapper_bg{
-webkit-box-shadow: 0px 0px 0px black;
-moz-box-shadow: 0px 0px 0px black;
box-shadow: 0px 0px 0px black;
}
<?php endif ?>
</style>
<?php wp_head(); //leave for plugins ?>
</head>
<body <?php body_class(); ?>>
<div id="wrapper_border" class="center" >
<!--logo-->
<div id="logoContainer">
<?php if( !$logo ) : ?>
<h1><a href="<?php echo esc_url( home_url( '/' ) ); ?>"> <?php echo get_option('header_text', 'Alpine'); ?></a></h1>
<p><?php echo get_option('sub_header_text', 'Edit me in the Theme Customizer'); ?></p>
<?php else : ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
<img src="<?php echo $logo ?>" alt="<?php bloginfo('name'); ?> "/>
</a>
<?php endif ?>
</div>
<div id="wrapper_bg" class="center" >
<div id="navwrap">
<div id="navwrap2">
<nav>
<?php wp_nav_menu(array('theme_location' => 'top', 'container' => 0, 'menu_id' => 'menuUl', 'items_wrap' => '<ul id="%1$s" class="%2$s"><li class="tnskip" > </li>%3$s<li class="tnskip"> </li><li class="tnskip filler"></li></ul>' )); ?>
</nav>
</div>
</div>
<?php
if ( is_singular() && has_post_thumbnail( $post->ID ) ) :
$image_array = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID) , 'full' );
$image = $image_array[0];
else :
$image = get_header_image();
endif;
?>
<?php if ( $image && !is_page_template('page-gallery.php') ) : ?>
<header>
<img class="size-full" src="<?php echo $image; ?>" alt="" />
</header>
<?php endif; ?>