Advertisement
Guest User

header.php

a guest
Jul 16th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.79 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Header Template Part
  4.  *
  5.  * Template part file that contains the HTML document head and
  6.  * opening HTML body elements, as well as the site header
  7.  *
  8.  * @package     Rumput Hijau
  9.  * @author      Satrya
  10.  * @license     license.txt
  11.  * @since       Rumput Hijau 1.0.0
  12.  *
  13.  */
  14. ?>
  15. <!DOCTYPE html>
  16. <!--[if IEMobile 7 ]> <html <?php language_attributes(); ?>class="no-js iem7"> <![endif]-->
  17. <!--[if lt IE 7 ]> <html <?php language_attributes(); ?> class="no-js ie6 oldie"> <![endif]-->
  18. <!--[if IE 7 ]> <html <?php language_attributes(); ?> class="no-js ie7 oldie"> <![endif]-->
  19. <!--[if IE 8 ]> <html <?php language_attributes(); ?> class="no-js ie8 oldie"> <![endif]-->
  20. <!--[if (gte IE 9)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html <?php language_attributes(); ?> class="no-js"><!--<![endif]-->
  21. <head>
  22. <meta charset="<?php bloginfo( 'charset' ); ?>">
  23. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  24. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
  25.  
  26. <title><?php wp_title(); ?></title>
  27.    
  28. <link rel="profile" href="http://gmpg.org/xfn/11">
  29. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  30.  
  31. <?php wp_head(); ?>
  32. </head>
  33.  
  34. <body <?php body_class(); ?>>
  35. <div id="page" class="hfeed site">
  36.  
  37.     <?php rumputhijau_before(); // before main hook // hook to display top navigation, defined in /includes/templates.php ?>
  38.    
  39.     <div id="main" class="site-main">
  40.        
  41.         <?php rumputhijau_main(); // main hook ?>
  42.        
  43.         <header id="masthead" class="site-header" role="banner">
  44.        
  45.             <?php rumputhijau_header(); // header hook // hook to display the header area, Defined in /includes/templates.php ?>
  46.                
  47.         </header><!-- #masthead .site-header -->
  48.        
  49.         <?php rumputhijau_header_after(); // after header hook ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement