header.php 1.6 KB

12345678910111213141516171819202122232425262728
  1. <?php ?><!DOCTYPE html>
  2. <html dir="ltr" lang="en-US">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title><?php global $page, $paged; wp_title( '|', true, 'right' ); bloginfo( 'name' ); $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', '_ph' ), max( $paged, $page ) ); ?></title>
  7. <!--[if lt IE 9]><script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script><![endif]-->
  8. <?php wp_head(); ?>
  9. </head>
  10. <body>
  11. <div id="header-wrap">
  12. <header>
  13. <div class="container">
  14. <div class="row">
  15. <div class="twelvecol">
  16. <h1 class="josefin title"><a href="<?php echo home_url( '/' ); ?>">PENNEBAKER HEGEDUS FILMS</a></h1>
  17. <nav><h2 class="josefin"><a href="<?php echo home_url( '/' ); ?>films">FILMS</a> | <a href="<?php echo home_url( '/' ); ?>history">HISTORY</a> | <a href="<?php echo home_url( '/' ); ?>press">PRESS</a> | <a href="<?php echo home_url( '/' ); ?>license">LICENSING</a> | <a href="<?php echo home_url( '/' ); ?>store">STORE</a></h2></nav>
  18. <div class="search">
  19. <form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
  20. <div class="searchfield"><input type="submit" class="submit" name="submit" id="searchsubmit" value="" />
  21. <input type="text" class="field" name="s" id="s" placeholder="" /></div>
  22. </form>
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. </header>
  28. </div>