Advertisement
Guest User

Untitled

a guest
Mar 5th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 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.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  4.  
  5. <head profile="http://gmpg.org/xfn/11">
  6.  
  7. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  8.  
  9. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  10.  
  11. <link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/images/favicon.ico" />
  12.  
  13. <title><?php display_title(get_search_query()); ?></title>
  14.  
  15. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  16.  
  17. <link href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" rel="stylesheet" media="screen" />
  18.  
  19. <link href="<?php echo get_template_directory_uri(); ?>/mystyle.css" type="text/css" rel="stylesheet" media="screen" />
  20.  
  21. <?php if (strpos ($_SERVER['HTTP_USER_AGENT'], 'MSIE 6')) : ?>
  22.  
  23. <script src="<?php echo get_template_directory_uri() ?>/scripts/suckerfish.js" type="text/javascript"></script>
  24.  
  25. <link href="<?php echo get_template_directory_uri() ?>/ie6.css" type="text/css" rel="stylesheet" media="screen" />
  26.  
  27. <?php endif ?>
  28.  
  29. <?php if (strpos ($_SERVER['HTTP_USER_AGENT'], 'MSIE 7')) : ?>
  30.  
  31. <style>
  32.  
  33. ul#menu li li li { padding-left:0; }
  34.  
  35. </style>
  36.  
  37. <?php endif ?>
  38.  
  39. <?php if (strpos ($_SERVER['HTTP_USER_AGENT'], 'KHTML')) : ?>
  40.  
  41. <style>
  42.  
  43. #feeds p { margin-top:0px; }
  44.  
  45. </style>
  46.  
  47. <?php endif ?>
  48.  
  49. <?php if ((strpos ($_SERVER['HTTP_USER_AGENT'], 'Presto')) || (strpos ($_SERVER['HTTP_USER_AGENT'], 'MSIE'))) : ?>
  50.  
  51. <style>
  52.  
  53. #searchform input#searchsubmit { height:24px; }
  54.  
  55. #feeds p { padding-top:1px; }
  56.  
  57. </style>
  58.  
  59. <?php endif ?>
  60.  
  61. <?php wp_head(); ?>
  62.  
  63. </head>
  64.  
  65.  
  66.  
  67. <body <?php body_class() ?>>
  68.  
  69. <div id="wrapper">
  70.  
  71. <div id="feeds">
  72.  
  73. <p><a class="rsslink" href="<?php bloginfo('rss2_url'); ?>" title="RSS Feed"><?php _e('Articles','cover-wp') ?></a>
  74.  
  75. <a class="rsslink" href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('Comments Feed') ?>"><?php _e('Comments','cover-wp') ?></a></p>
  76.  
  77. </div><!-- /feeds -->
  78.  
  79. <div id="topbar">
  80.  
  81. </div><!-- /topbar -->
  82.  
  83. <div id="header">
  84.  
  85. <div id="headerwidget">
  86.  
  87. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
  88.  
  89. <?php endif; ?>
  90.  
  91. </div>
  92.  
  93. <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement