Advertisement
Artisantopia

header-buddypress.php

May 2nd, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Header for our theme.
  4. *
  5. * WARNING: This template file is a core part of the
  6. * Theme Blvd WordPress Framework. This framework is
  7. * designed around this file NEVER being altered. It
  8. * is advised that any edits to the way this file
  9. * displays its content be done with via hooks and filters.
  10. *
  11. * @author Jason Bobich
  12. * @copyright Copyright (c) Jason Bobich
  13. * @link http://jasonbobich.com
  14. * @link http://themeblvd.com
  15. * @package Theme Blvd WordPress Framework
  16. */
  17. ?>
  18. <!DOCTYPE html>
  19. <html <?php language_attributes(); ?>>
  20. <head>
  21. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  22. <?php if( themeblvd_get_option( 'responsive_css' ) != 'false' ) : ?>
  23. <meta name="viewport" content="width=device-width, maximum-scale=1" />
  24. <?php endif; ?>
  25. <title><?php themeblvd_title(); ?></title>
  26. <link rel="profile" href="http://gmpg.org/xfn/11" />
  27. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  28. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  29. <!--[if lt IE 9]>
  30. <script src="<?php echo get_template_directory_uri(); ?>/framework/frontend/assets/js/html5.js" type="text/javascript"></script>
  31. <![endif]-->
  32. <?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?>
  33. <?php wp_head(); ?>
  34. </head>
  35. <body <?php body_class(); ?>>
  36. <?php themeblvd_before(); ?>
  37. <div id="wrapper">
  38. <div id="container">
  39.  
  40. <!-- HEADER (start) -->
  41.  
  42. <?php themeblvd_header_before(); ?>
  43. <div id="top">
  44. <header id="branding" role="banner">
  45. <div class="content">
  46. <?php
  47. /**
  48. * Display header elements.
  49. */
  50. themeblvd_header_top();
  51. themeblvd_header_above();
  52. themeblvd_header_content();
  53. themeblvd_header_menu();
  54. ?>
  55. </div><!-- .content (end) -->
  56. </header><!-- #branding (end) -->
  57. </div><!-- #top (end) -->
  58. <?php themeblvd_header_after(); ?>
  59.  
  60. <!-- HEADER (end) -->
  61.  
  62. <div id="container">
  63. <div id="post_content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement