Advertisement
Ronnie_Fantastic

header.php

Oct 29th, 2012
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 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. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  3. <head profile="http://gmpg.org/xfn/11">
  4. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />
  5. <title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?></title>
  6. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url') ?>" type="text/css" media="screen" />
  7. <!--[if IE 6]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie6.css" type="text/css" media="screen" /><![endif]-->
  8. <!--[if IE 7]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie7.css" type="text/css" media="screen" /><![endif]-->
  9. <?php if(WP_VERSION < 3.0): ?>
  10. <link rel="alternate" type="application/rss+xml" title="<?php printf(__('%s RSS Feed', THEME_NS), get_bloginfo('name')); ?>" href="<?php bloginfo('rss2_url'); ?>" />
  11. <link rel="alternate" type="application/atom+xml" title="<?php printf(__('%s Atom Feed', THEME_NS), get_bloginfo('name')); ?>" href="<?php bloginfo('atom_url'); ?>" />
  12. <?php endif; ?>
  13. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  14. <?php
  15. remove_action('wp_head', 'wp_generator');
  16. wp_enqueue_script('jquery');
  17. if ( is_singular() && get_option( 'thread_comments' ) ) {
  18. wp_enqueue_script( 'comment-reply' );
  19. }
  20. wp_head(); ?>
  21. <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/script.js"></script>
  22. </head>
  23. <body <?php if(function_exists('body_class')) body_class(); ?>>
  24. <div id="art-page-background-glare-wrapper">
  25. <div id="art-page-background-glare"></div>
  26. </div>
  27. <div id="art-main">
  28. <div class="cleared reset-box"></div>
  29. <div class="art-header">
  30. <div class="art-header-position">
  31. <div class="art-header-wrapper">
  32. <div class="cleared reset-box"></div>
  33. <div class="art-header-inner">
  34. <div class="art-headerobject"></div>
  35. <div class="art-logo">
  36. <?php if(theme_get_option('theme_header_show_headline')): ?>
  37. <?php $headline = theme_get_option('theme_'.(is_single()?'single':'posts').'_headline_tag'); ?>
  38. <<?php echo $headline; ?> class="art-logo-name"><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></<?php echo $headline; ?>>
  39. <?php endif; ?>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. <div class="cleared reset-box"></div>
  46. <div class="art-bar art-nav">
  47. <div class="art-nav-outer">
  48. <div class="art-nav-wrapper">
  49. <div class="art-nav-inner">
  50. <?php
  51. echo theme_get_menu(array(
  52. 'source' => theme_get_option('theme_menu_source'),
  53. 'depth' => theme_get_option('theme_menu_depth'),
  54. 'menu' => 'primary-menu',
  55. 'class' => 'art-hmenu'
  56. )
  57. );
  58. ?>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. <div class="cleared reset-box"></div>
  64. <div class="art-box art-sheet">
  65. <div class="art-box-body art-sheet-body">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement