Advertisement
Guest User

header-buddypress.php - Atahualpa

a guest
Apr 10th, 2012
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <?php global $templateURI, $homeURL; ?>
  3. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  4. <head>
  5. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  6. <?php // if index.php or another page template (copied from index.php) was not used
  7. if (!isset($bfa_ata))
  8. list($bfa_ata, $cols, $left_col, $left_col2, $right_col, $right_col2, $bfa_ata['h_blogtitle'], $bfa_ata['h_posttitle']) = bfa_get_options(); ?>
  9. <?php if ( isset($bfa_ata['IEDocType']) ) {
  10. switch ( $bfa_ata['IEDocType'] ) {
  11. case "None":
  12. break;
  13. case "EmulateIE7":
  14. ?><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
  15. <?php
  16. break;
  17. case "EmulateIE8":
  18. ?><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"/>
  19. <?php
  20. break;
  21. case "IE8":
  22. ?><meta http-equiv="X-UA-Compatible" content="IE=8"/>
  23. <?php
  24. break;
  25. case "IE9":
  26. ?><meta http-equiv="X-UA-Compatible" content="IE=9"/>
  27. <?php
  28. break;
  29. case "Edge":
  30. ?><meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
  31. <?php
  32. break;
  33. default:
  34. break;
  35. }} ?><?php bfa_meta_tags(); ?>
  36. <?php if ($bfa_ata['favicon_file'] != "") { ?><link rel="shortcut icon" href="<?php echo $templateURI; ?>/images/favicon/<?php echo $bfa_ata['favicon_file']; ?>" />
  37. <?php } ?>
  38. <link rel="profile" href="http://gmpg.org/xfn/11" />
  39. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  40. <?php if ( $bfa_ata['css_external'] == "External" ) { ?><link rel="stylesheet" href="<?php echo $homeURL; ?>/?bfa_ata_file=css" type="text/css" media="all" /><?php } ?>
  41. <?php if ( function_exists('wp_list_comments') AND is_singular() ) { wp_enqueue_script( 'comment-reply' ); } ?>
  42. <?php wp_head(); ?>
  43. </head>
  44. <body <?php body_class(); ?><?php bfa_incl('html_inserts_body_tag'); ?>>
  45. <?php bfa_incl('html_inserts_body_top'); ?>
  46. <div id="wrapper">
  47. <div id="container">
  48. <table id="layout" border="0" cellspacing="0" cellpadding="0">
  49. <colgroup>
  50. <col class="colone">
  51. <col class="coltwo">
  52. <col class="colthree">
  53. </colgroup>
  54. <tr>
  55.  
  56. <!-- Header -->
  57. <td id="header" colspan="<?php echo $cols; ?>">
  58.  
  59. <?php echo bfa_header_config(); ?>
  60.  
  61. </td>
  62. <!-- / Header -->
  63.  
  64. </tr>
  65.  
  66. <!-- Main Body -->
  67. <tr id="bodyrow">
  68.  
  69. <!-- Left Sidebar -->
  70. <td id="left">
  71.  
  72. <?php // Widgetize the Left Sidebar
  73. if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Left Sidebar') ) : ?>
  74.  
  75. <div class="widget widget_categories"><div class="widget-title">
  76. <h3><?php _e('Categories','atahualpa'); ?></h3>
  77. </div>
  78. <ul><?php wp_list_categories('show_count=1&title_li='); ?></ul>
  79. </div>
  80.  
  81. <div class="widget widget_archive"><div class="widget-title">
  82. <h3><?php _e('Archives','atahualpa'); ?></h3>
  83. </div>
  84. <ul><?php wp_get_archives('type=monthly'); ?></ul>
  85. </div>
  86.  
  87. <div class="widget widget_text"><div class="widget-title">
  88. <h3>A sample text widget</h3></div>
  89. <div class="textwidget">
  90. <p>Etiam pulvinar consectetur dolor sed malesuada. Ut convallis
  91. <a href="http://wordpress.org/">euismod dolor nec</a> pretium. Nunc ut tristique massa. </p>
  92. <p>Nam sodales mi vitae dolor <em>ullamcorper et vulputate enim accumsan</em>.
  93. Morbi orci magna, tincidunt vitae molestie nec, molestie at mi. <strong>Nulla nulla lorem</strong>,
  94. suscipit in posuere in, interdum non magna. </p>
  95. </div>
  96.  
  97. <?php endif; ?>
  98.  
  99. </td>
  100. <!-- / Left Sidebar -->
  101.  
  102. <!-- Main Column -->
  103. <td id="middle">
  104.  
  105. <div class="page hentry">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement