Advertisement
Guest User

header-buddypress

a guest
Feb 7th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 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.  
  4. <head profile="http://gmpg.org/xfn/11">
  5. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  6.  
  7. <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
  8.  
  9. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  10. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  11. <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
  12. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  13.  
  14.  
  15. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  16.  
  17. <?php //comments_popup_script(600, 600); ?>
  18.  
  19. <?php wp_head(); ?>
  20.  
  21. </head>
  22. <body>
  23. <div class="min-width">
  24. <!--header-->
  25. <div class="main">
  26. <div id="header">
  27. <div class="logo">
  28. <h1 onclick="location.href='<?php echo get_option('home'); ?>/'"><?php bloginfo('name'); ?></h1>
  29. <div class="description"><?php bloginfo('description'); ?></div>
  30. </div>
  31. <div class="menu">
  32. <ul>
  33. <?php
  34. $what_to_find=array("<a", "</a>");
  35. $what_to_replace=array("<span onmouseover=\"this.className='over';\" onmouseout=\"this.className='out';\" class=\"out\"><span><a", "</a></span></span>");
  36. echo (str_replace($what_to_find, $what_to_replace, wp_list_pages('title_li=&echo=0')));
  37. ?>
  38. </ul>
  39. </div>
  40. <div class="clear"></div>
  41. <div class="search">
  42. <?php get_search_form(); ?>
  43. </div>
  44. </div>
  45.  
  46. <!--header end-->
  47. <!--content -->
  48. <div class="content">
  49. <div class="clear-block">
  50.  
  51. <?php get_sidebar(1); ?>
  52. <div class="column-center">
  53. <div class="indent-center">
  54. <div class="post" id="post-<?php the_ID(); ?>">
  55. <div class="text-box">
  56. <div class="ind">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement