keltichiro

header stuff

Jan 27th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. Here's the code from my header.php...
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7. <title>Keltichiro.com</title>
  8. <link rel="stylesheet" type="text/css" href="reset.css" />
  9. <link rel="stylesheet" type="text/css" href="style.css" />
  10. <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
  11. <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
  12.  
  13. <?wp_head(); ?>
  14. </head>
  15.  
  16. <body>
  17. <div id="wrapper">
  18. <div id="header">
  19. <div id="logo"><img src="images/logo.gif" width="257" height="62" alt="Keltichiro.com" longdesc="http://www.keltichiro.com" /></div>
  20. <!-- menu bar code below -->
  21. <script type="text/javascript">
  22. var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
  23. </script>
  24. <ul id="MenuBar1" class="MenuBarHorizontal">
  25. <li><a href="#">Home</a> </li>
  26. <li><a href="#">About Me</a></li>
  27. <li><a href="#">Portfolio</a> </li>
  28. <li><a href="#">Contact Me</a></li>
  29. </ul>
  30. <!-- end menu bar code -->
  31. <!-- calling RSS feed.. -->
  32. <link rel=“alternate” type=“application/rss+xml” title=“<?php wp_bloginfo(‘name’); ?>” href=“<?php wp_bloginfo(‘rss2_url’); ?>” />
  33. <!-- end of RSS feed -->
  34. </div>
  35.  
  36.  
  37.  
  38. Here's the code from my index.php...
  39.  
  40. <!-- header -->
  41. <?php get_header(); ?>
  42. <!-- end header -->
  43. <!-- main content -->
  44.  
  45. <div id="background">
  46. <div id="content">
  47. </div>
  48. </div>
  49. <!-- end main content -->
  50. <!-- sidebar -->
  51. <?php get_sidebar(); ?>
  52. <!-- end sidebar -->
  53.  
  54. <!-- footer -->
  55. <?php get_footer(); ?>
  56. <!-- end footer -->
Advertisement
Add Comment
Please, Sign In to add comment