Advertisement
Guest User

Untitled

a guest
Mar 26th, 2011
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.50 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" <?php language_attributes(); ?>>
  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 elegant_titles(); ?></title>
  6. <?php elegant_description(); ?>
  7. <?php elegant_keywords(); ?>
  8. <?php elegant_canonical(); ?>
  9.  
  10. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  11. <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/jquery.fancybox-1.2.6.css" type="text/css" media="screen" />
  12. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  13. <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
  14. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  15. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  16. <?php wp_head(); ?>
  17. <!--[if lt IE 7]>
  18.     <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/css/ie6style.css" />
  19.     <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/DD_belatedPNG_0.0.8a-min.js"></script>
  20.     <script type="text/javascript">DD_belatedPNG.fix('img#logo, .slider_image img, .banner, .banner .readmore, .wrap .image img, .thumb div .image img, div.avatar span.overlay');</script>
  21. <![endif]-->
  22. <!--[if IE 7]>
  23.     <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/css/ie7style.css" />
  24. <![endif]-->
  25. <script src="<?php bloginfo('template_directory'); ?>/js/fancybox.js" type="text/javascript"></script>
  26. <script src="<?php bloginfo('template_directory'); ?>/js/easing.js" type="text/javascript"></script>
  27. <script src="<?php bloginfo('template_directory'); ?>/js/cufon-yui.js" type="text/javascript"></script>
  28. <script src="<?php bloginfo('template_directory'); ?>/js/superfish.js" type="text/javascript"></script>
  29. </head>
  30. <body>
  31. <div class="wrapper">
  32.  
  33.   <a>"><img src="<?php bloginfo('template_directory'); ?>/images/logo1.png" alt="logo" id="logo" /></a>
  34.  
  35.     <div id="navwrap">
  36.         <span class="nav_top"></span>
  37.         <?php $menuClass = 'nav superfish';
  38.         $primaryNav = '';
  39.         if (function_exists('wp_nav_menu')) {
  40.             $primaryNav = wp_nav_menu( array( 'theme_location' => 'primary-menu', 'container' => '', 'fallback_cb' => '', 'menu_class' => $menuClass, 'echo' => false ) );
  41.         };
  42.         if ($primaryNav == '') { ?>
  43.             <ul class="<?php echo $menuClass; ?>">
  44.                 <?php if (get_option('simplepress_home_link') == 'on') { ?>
  45.                     <li <?php if (is_home()) echo('class="current_page_item"') ?>><a>"><?php _e('Home','SimplePress') ?></a>
  46.                 <?php }; ?>
  47.  
  48.                 <?php show_page_menu($menuClass,false,false); ?>
  49.                 <?php show_categories_menu($menuClass,false); ?>
  50.              <!-- end ul.nav -->
  51.         <?php }
  52.         else echo($primaryNav); ?>
  53.  
  54.         <?php global $default_colorscheme, $shortname; $colorSchemePath = '';
  55.         $colorScheme = get_option($shortname . '_color_scheme');
  56.         if ($colorScheme <> $default_colorscheme) $colorSchemePath = strtolower($colorScheme) . '/'; ?>
  57.         <br class="clear" />
  58.         <span class="nav_bottom"></span>
  59.     </div><!-- #navwrap -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement