[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/bp-forums/bbpress/bb-templates/kakumei/ -> header.php (source)

   1  <?php
   2  $_head_profile_attr = '';
   3  if ( bb_is_profile() ) {
   4      global $self;
   5      if ( !$self ) {
   6          $_head_profile_attr = ' profile="http://www.w3.org/2006/03/hcard"';
   7      }
   8  }
   9  ?>
  10  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  11  <html xmlns="http://www.w3.org/1999/xhtml"<?php bb_language_attributes( '1.1' ); ?>>
  12  <head<?php echo $_head_profile_attr; ?>>
  13      <meta http-equiv="X-UA-Compatible" content="IE=8" />
  14      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  15      <title><?php bb_title() ?></title>
  16      <link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
  17  <?php if ( 'rtl' == bb_get_option( 'text_direction' ) ) : ?>
  18      <link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />
  19  <?php endif; ?>
  20  
  21  <?php bb_feed_head(); ?>
  22  
  23  <?php bb_head(); ?>
  24  
  25  </head>
  26  <body id="<?php bb_location(); ?>">
  27      <div id="wrapper">
  28          <div id="header" role="banner">
  29              <h1><a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a></h1>
  30              <?php if ( bb_get_option('description') ) : ?><p class="description"><?php bb_option('description'); ?></p><?php endif; ?>
  31  
  32  <?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>
  33  
  34              <div class="search">
  35  <?php search_form(); ?>
  36              </div>
  37          </div>
  38          <div id="main">
  39  
  40  <?php if ( bb_is_profile() ) profile_menu(); ?>


Generated: Thu Dec 7 01:01:35 2017 Cross-referenced by PHPXref 0.7.1