Advertisement
Guest User

Untitled

a guest
Mar 26th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.48 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 wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
  6.  
  7. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  8. <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/css/prettyphoto.css" media="screen" />   
  9.  
  10. <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  11. <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
  12. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  13.  
  14.  
  15. <?php
  16. wp_enqueue_script('jquery');
  17. wp_enqueue_script('effects', get_stylesheet_directory_uri() .'/js/effects.js');
  18. wp_enqueue_script('superfish', get_stylesheet_directory_uri() .'/js/superfish.js');
  19. wp_enqueue_script('prettyphoto', get_stylesheet_directory_uri() .'/js/jquery.prettyPhoto.js');
  20. wp_enqueue_script('tooltip', get_stylesheet_directory_uri() .'/js/tooltip.js');
  21. wp_enqueue_script('bxslider', get_stylesheet_directory_uri() .'/js/jquery.bxSlider.min.js');
  22. ?>
  23.  
  24. <?php wp_get_archives('type=monthly&format=link'); ?>
  25. <?php //comments_popup_script(); // off by default ?>
  26. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); wp_head(); ?>
  27.  
  28. </head>
  29. <body>
  30.  
  31. <div id="masthead"><!-- masthead begin -->
  32.  
  33. <div id="top">
  34.    
  35. <div id="blogname">
  36. <?php $mylogo = get_option('ebuy_logo'); ?>
  37. <h1 class="logo"><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><img src="<?php echo $mylogo ?>" alt="<?php bloginfo('name');?>"/></a></h1>
  38. <h3><?php bloginfo( 'description' ); ?></h3>
  39. </div>
  40.  
  41. <div class="topbar"><?php $ad1 = get_option('ebuy_topad'); echo stripslashes($ad1); ?></div>
  42.            
  43. </div>
  44.    
  45. <div id="botmenu">
  46.     <?php wp_nav_menu( array( 'container_id' => 'submenu', 'theme_location' => 'primary','menu_class'=>'sfmenu','fallback_cb'=> 'fallbackmenu' ) ); ?>
  47.     <?php include (TEMPLATEPATH . '/searchform.php'); ?>   
  48. </div>
  49.    
  50. </div><!--end masthead-->
  51.  
  52. <div id="wrapper">  <!-- wrapper begin -->
  53. <div id="casing">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement