Advertisement
Guest User

Untitled

a guest
Apr 1st, 2011
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.90 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">
  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>
  6. <?php bloginfo('name'); ?>
  7. <?php wp_title(); ?>
  8. </title>
  9. <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/style.css" media="screen"/>
  10. <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/tabber.css" media="screen"/>
  11. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  12. <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
  13. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  14. <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/images/favicon.ico" />
  15. <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/javascripts/dropdown.js"></script>
  16. <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/javascripts/tabber.js"></script>
  17. <?php if (function_exists('wp_enqueue_script') && function_exists('is_singular')) : ?>
  18. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  19. <?php endif; ?>
  20. <?php wp_head(); ?>
  21. <script type="text/javascript">
  22.  
  23. /* Optional: Temporarily hide the "tabber" class so it does not "flash"
  24.    on the page as plain HTML. After tabber runs, the class is changed
  25.    to "tabberlive" and it will appear. */
  26.  
  27. document.write('<style type="text/css">.tabber{display:none;}<\/style>');
  28. </script>
  29. </head>
  30. <body>
  31. <div id="wrapper">
  32. <div id="top">
  33.   <div id='topnav'>
  34.     <div class="left">
  35.       <?php if ( is_home() ) { ?>
  36.       <li class="current_page_item"><a href="<?php echo get_option('home'); ?>/">
  37.         <?php _e("Home", 'themejunkie'); ?>
  38.         </a></li>
  39.       <?php } else { ?>
  40.       <?php } ?>
  41.       <?php wp_list_pages('depth=1&sort_column=menu_order&title_li='); ?>
  42.     </div>
  43.     <!--end: left-->
  44.     <div class="right">
  45.       <form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">
  46.         <div id="search">
  47.           <input class="searchinput" type="text" value="" onclick="this.value='';" name="s" id="s" />
  48.           <input type="submit" class="searchsubmit" value="OK"/>
  49.         </div>
  50.       </form>
  51.     </div>
  52.     <!--end: right-->
  53.   </div>
  54. </div>
  55. <!--end: top-->
  56. <div id="header">
  57. <a href="<?php bloginfo('siteurl'); ?>">
  58. <div class="logo"></div>
  59. <!--end: logo-->
  60.  
  61. </a>
  62. <?php include('ads/header468x60.php'); ?>
  63. <!--end: header-->
  64. <div id="menu">
  65.   <div class="left">
  66.     <?php wp_list_categories('title_li=&orderby=id'); ?>
  67.   </div>
  68.   <div class="right"> </div>
  69.   <!--end: right-->
  70. </div>
  71. <!--end: menu-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement