Advertisement
Guest User

Untitled

a guest
Oct 1st, 2012
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Header
  4. *
  5. * Displays all of the <head> section and everything up till <div id="main">
  6. *
  7. * @package Cryout Creations
  8. * @subpackage mantra
  9. * @since mantra 0.5
  10. */
  11. ?><!DOCTYPE html >
  12. <html <?php language_attributes(); ?>>
  13. <head>
  14. <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" />
  15. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  16. <?php cryout_seo_hook(); ?>
  17. <link rel="profile" href="http://gmpg.org/xfn/11" />
  18. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  19. <?php
  20. cryout_header_hook();
  21. wp_head(); ?>
  22. </head>
  23. <body <?php body_class(); ?>>
  24.  
  25. <?php cryout_body_hook(); ?>
  26.  
  27. <div id="wrapper" class="hfeed">
  28.  
  29. <?php cryout_wrapper_hook(); ?>
  30.  
  31. <header id="header">
  32.  
  33. <div id="masthead">
  34.  
  35. <div id="branding" role="banner" >
  36.  
  37. <?php cryout_branding_hook();?>
  38. <div style="clear:both;"></div>
  39.  
  40. </div><!-- #branding -->
  41.  
  42. <nav id="access" role="navigation">
  43.  
  44. <?php cryout_access_hook();?>
  45.  
  46. </nav><!-- #access -->
  47.  
  48. </div><!-- #masthead -->
  49.  
  50. <div style="clear:both;"> </div>
  51.  
  52. </header><!-- #header -->
  53. <div id="main">
  54. <div id="forbottom" >
  55. <?php cryout_forbottom_hook(); ?>
  56. <div style="clear:both;"> </div>
  57.  
  58. <?php cryout_breadcrumbs_hook();?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement