buddypress/bp-themes/bpskeletonmember/header.php
Andy Peatling 2eb0117b5a Fixed incorrect constant name.
git-svn-id: https://buddypress.svn.wordpress.org/trunk@1509 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2009-06-04 18:10:37 +00:00

68 lines
No EOL
2.5 KiB
PHP

<?php
/*
* /header.php
* Loaded at the beginning of every page.
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php bp_page_title() ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<?php bp_styles(); ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_head(); ?>
</head>
<body>
<div id="search-login-bar">
<?php bp_search_form() ?>
<?php bp_login_bar() ?>
</div>
<div id="header">
<h1 id="logo">
<a href="<?php echo get_option('home') ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php bp_site_name() ?></a>
</h1>
<ul id="nav">
<li<?php if ( bp_is_page( 'home' ) ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo get_option('home') ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?></a>
</li>
<li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo get_option('home') ?>/<?php echo BP_MEMBERS_SLUG ?>" title="<?php _e( 'Members', 'buddypress' ) ?>"><?php _e( 'Members', 'buddypress' ) ?></a>
</li>
<?php if ( function_exists( 'groups_install' ) ) : ?>
<li<?php if ( bp_is_page( BP_GROUPS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo get_option('home') ?>/<?php echo BP_GROUPS_SLUG ?>" title="<?php _e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?></a>
</li>
<?php endif; ?>
<?php if ( function_exists( 'bp_blogs_install' ) ) : ?>
<li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo get_option('home') ?>/<?php echo BP_BLOGS_SLUG ?>" title="<?php _e( 'Blogs', 'buddypress' ) ?>"><?php _e( 'Blogs', 'buddypress' ) ?></a>
</li>
<?php endif; ?>
<?php do_action( 'bp_nav_items' ); ?>
</ul>
</div>
<?php load_template ( TEMPLATEPATH . '/userbar.php' ) ?>
<?php load_template ( TEMPLATEPATH . '/optionsbar.php' ) ?>
<div id="content">