Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Hello_D
  5. */
  6. ?>
  7.  
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  9. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  10.  
  11. <head profile="http://gmpg.org/xfn/11">
  12. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  13. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  14. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  15. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  16. <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/print.css" type="text/css" media="print" />
  17. <!--[if IE]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/ie.css" type="text/css" media="screen, projection" /><![endif]-->
  18.  
  19. <script type="text/javascript" src="http://www.google.com/jsapi"></script>
  20. <script type="text/javascript">
  21. // Load jQuery
  22. google.load("jquery", "1.2.6");
  23. </script>
  24. <script type="text/javascript">
  25. /* <![CDATA[ */
  26. var $j = jQuery.noConflict();
  27. $j(document).ready(function() {
  28. $j(".menu a").wrapInner(document.createElement("span"));
  29. $j('.post').before('<div class="post_top"></div>').after('<div class="post_end"></div>');
  30. $j('.widget').before('<li class="widget_top"></li>').after('<li class="widget_end"></li>');
  31. $j('#search').prepend('<h2 style="text-align: left;">Search</h2>');
  32. });
  33. /* ]]> */
  34. </script>
  35.  
  36. <?php
  37. if(is_singular()) wp_enqueue_script('comment-reply');
  38. wp_head();
  39. ?>
  40.  
  41. <title><?php wp_title(' '); ?><?php if(wp_title(' ', false)) { echo ' -'; } ?> <?php bloginfo('name'); ?></title>
  42. </head>
  43.  
  44. <body>
  45. <div class="container clearfix">
  46.  
  47. <div id="header">
  48. <h1 id="logo"><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
  49. <p class="description"><?php bloginfo('description'); ?></p>
  50. <ul class="menu">
  51. <li class="page_item page_item_1<?php if ( is_home() ) { ?> current_page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/" title="Home">Home</a></li>
  52. <?php wp_list_pages('title_li=&depth=1' ); ?>
  53. </ul>
  54. </div><!-- end #header -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement