Advertisement
Guest User

header.php

a guest
Dec 1st, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html <?php language_attributes(); ?>>
  3. <head>
  4. <meta http-equiv="content-type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  5. <title><?php wp_title(' | ', true, 'right'); ?></title>
  6. <link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>" />
  7. <img src="<?php bloginfo('template_directory') ?>/images/background.png" id="bg" alt="">
  8. <img src="<?php bloginfo('template_directory') ?>/images/title.png" id="tit" alt="">
  9. <img src="<?php bloginfo('template_directory') ?>/images/header.png" id="hder" alt="">
  10. <?php wp_head(); ?>
  11. </head>
  12. <body <?php body_class(); ?>>
  13. <div id="wrapper" class="hfeed">
  14. <header>
  15. <div id="navbar">
  16. <ul>
  17. <li><a href="<?php echo get_settings('home'); ?>"><?php _e('Home') ?></a></li>
  18. <?php wp_list_pages('title_li=&depth=1') ?>
  19. </ul>
  20. </div>
  21. </header>
  22. <?php get_sidebar(); ?>
  23. <div id='main'>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement