zeelifestyle

Header

Jun 13th, 2011
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 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.  
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title><?php wp_head(); ?>
  6. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  7.  
  8. <!--CSS Main-->
  9. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
  10.  
  11. <!--JQuery-->
  12. <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery/jquery-1.4.2.min.js"></script>
  13.  
  14.  
  15.  
  16. </head>
  17. <body>
  18.  
  19.  
  20. <!--Header-->
  21. <div id="header">
  22.  
  23. <div class="wrap">
  24.  
  25.  
  26.  
  27. <div id="logo">
  28. <?php if (!is_home()): ?><a href="<?php echo get_option('home'); ?>"><?php endif ?>
  29. <img src="<?php bloginfo('template_directory'); ?>/images/logo.png" class="logo" alt="" />
  30. <?php if (!is_home()): ?></a><?php endif ?>
  31. <span>The lifestyle bible for Cebu and Davao</span>
  32. </div>
  33.  
  34.  
  35.  
  36. <!--Menu-->
  37. <?php if (function_exists('wp_nav_menu'))
  38.  
  39. { wp_nav_menu( array(
  40. 'menu_class' => 'sf-menu typeface-js',
  41. 'fallback_cb' => 'display_home'
  42. ) ); }
  43.  
  44. else
  45.  
  46. {
  47. echo '<ul class="sf-menu">';
  48. if(is_home()) {
  49. echo '<li class="current_page_item"><a href="'.get_bloginfo('url').'">Home</a></li>'; }
  50. else {
  51. echo '<li><a href="'.get_bloginfo('url').'">Home</a></li>'; }
  52.  
  53. wp_list_pages('title_li=');
  54. wp_list_categories('title_li=');
  55.  
  56. echo '</ul>';
  57. }
  58. ?>
  59.  
  60.  
  61. </div>
  62.  
  63. </div>
Advertisement
Add Comment
Please, Sign In to add comment