Advertisement
Guest User

Untitled

a guest
Nov 27th, 2011
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5. <!-- Meta -->
  6. <title>
  7. <?php wp_title('|',true,'right'); ?>
  8. <?php bloginfo('name'); ?>
  9. </title>
  10. <meta http-equiv="content-type" content="text/html; charset=<?php bloginfo('charset'); ?>" />
  11. <meta name="description" content="<?php echo get_option('to_meta_description'); ?>" />
  12. <meta name="keywords" content="<?php echo get_option('to_meta_keywords'); ?>" />
  13.  
  14. <!-- Stylesheet -->
  15. <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" />
  16. <link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/styles/<?php echo get_option('to_style_scheme'); ?>.css" />
  17.  
  18. <!-- Codes -->
  19. <?php include (TEMPLATEPATH . '/codes.php'); ?>
  20. <style type="text/css">
  21. p a { <?php echo get_option('to_custom_css'); ?> }
  22. </style>
  23.  
  24. <!-- RSS feeds -->
  25. <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
  26. <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
  27. <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
  28. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  29. <?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); wp_head(); ?>
  30.  
  31. <!-- WordPress Header PHP -->
  32. <?php wp_head(); ?>
  33.  
  34. </head>
  35.  
  36. <body>
  37.  
  38. <!-- Site wrapper -->
  39. <div id="wrap">
  40.  
  41. <!-- Menu -->
  42. <div class="menu_container_wrap">
  43. <div class="menu_container">
  44. <a class="logo" href="<?php echo get_option('home'); ?>" title="<?php bloginfo('name'); ?>">
  45. <?php
  46. if (get_option('to_logo') != '') {
  47. ?>
  48. <img src="<?php echo get_option('to_logo'); ?>" title="<?php bloginfo('name'); ?>" alt="<?php bloginfo('name'); ?>" />
  49. <?php
  50. } else {
  51. echo bloginfo('name');
  52. }
  53. ?>
  54. </a>
  55.  
  56. <?php wp_nav_menu(array('top_nav_menu', 'menu_class' => 'sf-menu', 'menu' => 'P1')); ?>
  57.  
  58. <?php get_search_form(); ?>
  59. </div>
  60. </div>
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement