Advertisement
Guest User

header.php

a guest
Sep 9th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 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><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>
  6. <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
  7. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  8. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  9. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  10. <?php wp_head(); ?>
  11. </head>
  12. <body>
  13. <div id="wrapper">
  14.  
  15. <div id="header">
  16. <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
  17. <h2><?php bloginfo('description'); ?></h2>
  18. </div><!--header-->
  19.  
  20. <div id="rss">
  21. <a href="<?php bloginfo('rss2_url'); ?>" ><img src="<?php bloginfo('template_directory'); ?>/images/rss.gif" border="0" alt="RSS" /></a>
  22. </div>
  23. <br clear="all" />
  24.  
  25. <div id="navigation">
  26. <ul id="menu">
  27. <li class="<?php if (((is_home()) && !(is_paged())) or (is_archive()) or (is_single()) or (is_paged()) or (is_search())) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>">Home<?php echo $langblog;?></a></li>
  28. <?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
  29. <li class="topsearch"><?php include (TEMPLATEPATH . '/searchform.php'); ?></li>
  30. </ul>
  31. <br clear="all" />
  32. <?php include (TEMPLATEPATH . '/sidebar.php'); ?>
  33. </div><!-- end of navigation -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement