Advertisement
Guest User

header.php

a guest
Jun 1st, 2012
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  6. <meta name="generator" content="Wordpress <?php bloginfo('version'); ?>" />
  7. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  8. <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
  9. <link rel="pingback" href="<?php bloginfo('pingback url'); ?>" />
  10. <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
  11. <script type="text/javascript" src="http://www.dyluxept.com/scripts/my-javascript.js"></script>
  12. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" />
  13. <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/img/favicon.ico" />
  14. <?php wp_head(); ?>
  15. </head>
  16.  
  17. <body>
  18. <div id="header">
  19. <div class="logo">
  20. <a href="<?php bloginfo('url'); ?>"><img src="<?php echo get_template_directory_uri(); ?>/img/logo.png" alt="return to the home page" id="logo" /></a>
  21. </div><!-- end logo -->
  22. <div id="nav">
  23. <ul>
  24. <li><a href="<?php bloginfo('url'); ?>">Home</a></li>
  25. <?php wp_list_pages('title_li=&include=5,9,60,62,64'); ?>
  26. </ul>
  27. </div><!-- end nav -->
  28. </div><!-- end header -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement