Advertisement
Guest User

header.php

a guest
Jun 2nd, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.58 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 IE 7]>    <html class="no-js ie7 oldie" <?php language_attributes(); ?>> <![endif]-->
  17. <!--[if IE 8]>    <html class="no-js ie8 oldie" <?php language_attributes(); ?>> <![endif]-->
  18. <!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
  19. <head>
  20.  
  21. <meta charset="<?php bloginfo( 'charset' ); ?>">
  22. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  23. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
  24.  
  25. <title><?php wp_title(); ?></title>
  26.    
  27. <link rel="profile" href="http://gmpg.org/xfn/11">
  28. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  29.  
  30. <?php wp_head(); ?>
  31. </head>
  32.  
  33. <body <?php body_class(); ?>>
  34.  
  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