<!-- 
<!DOCTYPE html>

<html>

<head>
     <title><?php wp_title( '|', true, 'right' ); ?><?php bloginfo( 'name' ); ?></title>
     <meta charset="<?php bloginfo( 'charset' ); ?>">
     <meta name="viewport" content="width=device-width">
     <link rel="pingback" href="/<?php bloginfo( 'pingback_url' ); ?>">
    <link rel="stylesheet" href="/<?php echo get_stylesheet_uri(); ?>" type="text/css" />
    <?php wp_head(); ?>
</head>

 

<body>
<div id="page">

<?php if ( get_header_image() && display_header_text() ) : ?>
     <div style="background-image: url(/<?php header_image(); ?>);
     max-width:<?php echo get_custom_header()->width; ?>px;height:<?php echo get_custom_header()->height; ?>px;"><?php endif; ?>

 

<!-- Titel und Untertitel: -->
<h1 id="site-title">

    <a
        href="/<?php echo esc_url( home_url( '/' ) );?>"
        style="color:#<?php header_textcolor();?>;"
        rel="home"><?php bloginfo( 'name' ); ?>
    </a>

</h1>

<p style="color:#<?php header_textcolor();?>;"><?php bloginfo( 'description' ); ?></p>

<?php if ( get_header_image() && display_header_text() ) : ?>

     </div> <!-- Hintergrundbild -->

<?php endif; ?>

  

<!-- Header-Bild: -->
<?php if ( get_header_image() && ! display_header_text() ) : ?>
    <img src="/<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo    
    get_custom_header()->height; ?>" alt="">
<?php endif; ?>

 

<!-- Navigation -->
<nav role="navigation">
     <?php wp_nav_menu( array( 'theme_location' => 'mainmenu' ) ); ?>
</nav>