Advertisement
Guest User

header.php

a guest
Dec 16th, 2011
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  3. <head>
  4. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  5. <meta name="geo.region" content="US-FL" />
  6. <meta name="geo.placename" content="Tampa" />
  7. <meta name="geo.position" content="27.938149;-82.46495" />
  8. <meta name="ICBM" content="27.938149, -82.46495" />
  9. <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
  10. <link media="all" rel="stylesheet" type="text/css" href="<?php echo TEMPLATEURL; ?>/all.css" />
  11. <link media="all" rel="stylesheet" type="text/css" href="<?php echo TEMPLATEURL; ?>/style.css" />
  12. <script type="text/javascript" src="<?php echo TEMPLATEURL; ?>/js/main.js" ></script>
  13. <!--[if lt IE 8]><link rel="stylesheet" type="text/css" href="<?php echo TEMPLATEURL; ?>/ie.css" media="screen"/><![endif]-->
  14. <?php wp_head(); ?>
  15. </head>
  16. <body<?php if (is_front_page() || is_home()) : echo ''; else : echo ' id="page-inner"'; endif; ?>>
  17. <div id="wrapper">
  18. <div id="header">
  19. <div class="header-holder">
  20. <h1 class="logo"><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
  21. <div class="header-info">
  22. <?php wp_nav_menu(array(
  23. 'container' => '',
  24. 'depth' => 1,
  25. 'theme_location' => 'primary',
  26. 'menu_class' => 'top-nav',
  27. 'menu' => 'menu-header',
  28. 'link_before' => '',
  29. 'link_after' => '',
  30. 'number' => 0)); ?>
  31. <?php dynamic_sidebar('sidebar-header'); ?>
  32. </div>
  33. </div>
  34. <div class="bar">
  35. <?php wp_nav_menu(array(
  36. 'container' => '',
  37. 'depth' => 1,
  38. 'theme_location' => 'primary',
  39. 'menu_id' => 'nav',
  40. 'menu' => 'menu-top',
  41. 'link_before' => '',
  42. 'link_after' => '',
  43. 'number' => 0)); ?>
  44. </div>
  45. <div class="image">
  46. <img src="<?php echo TEMPLATEURL; ?>/images/decor.gif" width="543" height="232" alt="image description" />
  47. </div>
  48. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement