1. <?php
  2. /**
  3. * The Header for our theme.
  4. *
  5. * Displays all of the <head> section and everything up till <div id="main">
  6. *
  7. * @package F2
  8. * @since F2 2.0
  9. */
  10. ?><!DOCTYPE html>
  11. <html <?php language_attributes(); ?>>
  12. <head>
  13. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  14. <?php if( f2_get_option('non_responsive') != 'on' ) : ?>
  15. <meta name="viewport" content="width=device-width" />
  16. <?php endif; ?>
  17. <title><?php
  18. /*
  19. * Print the <title> tag based on what is being viewed.
  20. */
  21. global $page, $paged;
  22. wp_title( '|', true, 'right' );
  23. // Add the blog name.
  24. bloginfo( 'name' );
  25. // Add the blog description for the home/front page.
  26. $site_description = get_bloginfo( 'description', 'display' );
  27. if ( $site_description && ( is_home() || is_front_page() ) )
  28. echo " | $site_description";
  29. // Add a page number if necessary:
  30. if ( $paged >= 2 || $page >= 2 )
  31. echo ' | ' . sprintf( __( 'Page %s', 'f2' ), max( $paged, $page ) );
  32. ?></title>
  33. <link rel="profile" href="http://gmpg.org/xfn/11" />
  34. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  35. <!--[if lt IE 9]>
  36. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
  37. <![endif]-->
  38. <?php wp_head(); ?>
  39. </head>
  40. <body <?php body_class(); ?>>
  41. <div id="page" class="hfeed site">
  42. <?php do_action( 'before' ); ?>
  43. <header id="masthead" class="site-header" role="banner">
  44. <hgroup>
  45. <h1 class="site-title"><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  46. <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
  47. <?php f2_logo_image(); ?>
  48. </hgroup>
  49. <?php if( f2_get_option( 'hide_header_nav' ) != 'on' ) : ?>
  50. <nav role="navigation" class="site-navigation main-navigation">
  51. <h1 class="assistive-text"><?php _e( 'Menu', 'f2' ); ?></h1>
  52. <h1 id=header"><a href="http://www.rlshd.com">Releasehd | Download Latest and Free Movies, TV Shows</a></h1>
  53. <div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'f2' ); ?>"><?php _e( 'Skip to content', 'f2' ); ?></a></div>
  54. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  55. </nav><!-- .site-navigation .main-navigation -->
  56. <?php endif; // if('hide_header_nav') ?>
  57. <?php f2_header_image(); ?>
  58. </header><!-- #masthead .site-header -->
  59. <div id="main" class="site-main">