Advertisement
Guest User

header.php

a guest
Jul 20th, 2010
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <head profile="http://gmpg.org/xfn/11">
  2. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  3.  
  4. <title><?php mystique_title(); ?></title>
  5.  
  6. <?php mystique_meta_description(); ?>
  7. <meta name="designer" content="digitalnature.ro" />
  8.  
  9. <?php if(WP_VERSION < 3.0): ?>
  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. <?php endif; ?>
  13.  
  14. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  15. <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />
  16.  
  17. <?php wp_head(); ?>
  18. </head>
  19. <body class="<?php mystique_body_class() ?>">
  20. <div id="page">
  21.  
  22.  
  23. <div class="page-content header-wrapper">
  24.  
  25.  
  26. <div id="header" class="bubbleTrigger">
  27.  
  28. <?php do_action('mystique_header_start'); ?>
  29.  
  30. <div id="site-title" class="clear-block">
  31.  
  32. <?php mystique_logo(); ?>
  33. <?php if(get_bloginfo('description')): ?><p class="headline"><?php bloginfo('description'); ?></p><?php endif; ?>
  34.  
  35. <?php do_action('mystique_header'); ?>
  36.  
  37. </div>
  38. <?php if ( !class_exists( 'BP_Core_User' ) ) {
  39. mystique_navigation();
  40. } else {
  41. bp_mystique_navigation();
  42. }
  43. ?>
  44.  
  45. <?php do_action('mystique_header_end'); ?>
  46.  
  47. </div>
  48.  
  49. </div>
  50.  
  51. <!-- left+right bottom shadow -->
  52. <div class="shadow-left page-content main-wrapper">
  53. <div class="shadow-right">
  54.  
  55. <?php do_action('mystique_before_main'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement