Advertisement
kiddie159

contructor-header

May 3rd, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Constructor
  5. */
  6. ?>
  7. <!DOCTYPE html>
  8. <html <?php language_attributes(); ?>>
  9. <head>
  10. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  11. <title><?php wp_title('&raquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
  12. <!--[if lt IE 9]>
  13. <script type="text/javascript" src="<?php echo CONSTRUCTOR_DIRECTORY_URI; ?>/js/html5.js"></script>
  14. <![endif]-->
  15. <link rel="profile" href="http://gmpg.org/xfn/11" />
  16. <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>"/>
  17. <link rel="stylesheet" type="text/css" media="print" href="<?php echo CONSTRUCTOR_DIRECTORY_URI; ?>/print.css" />
  18. <link rel="stylesheet" type="text/css" media="only screen and (max-device-width: 480px)" href="<?php echo CONSTRUCTOR_DIRECTORY_URI; ?>/style-480.css" />
  19. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  20. <?php wp_get_archives('type=monthly&format=link'); ?>
  21. <?php wp_head(); ?>
  22. </head>
  23. <body <?php body_class(); ?>>
  24.  
  25. <div id="body">
  26. <div id="wrapheader" class="wrapper">
  27. <header id="header">
  28. <!-- Search Box Begin-->
  29. <form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">
  30. <div><input type="text" size="18" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" />
  31. <input type="submit" id="searchsubmit" value="Search" class="btn" />
  32. </div>
  33. </form>
  34. <!-- Search Box End -->
  35. <?php get_constructor_menu() ?>
  36. <div id="title">
  37. <?php if (is_home() || is_front_page()) { ?>
  38. <h1 id="name"><a href="<?php echo home_url(); ?>/" title="<?php bloginfo('name'); echo " &raquo; "; bloginfo('description');?>"><?php bloginfo('name'); ?></a></h1>
  39. <?php } else { ?>
  40. <div id="name"><a href="<?php echo home_url(); ?>/" title="<?php bloginfo('name'); echo " &raquo; "; bloginfo('description');?>"><?php bloginfo('name'); ?></a></div>
  41. <?php } ?>
  42. <div id="description"><?php bloginfo('description');?></div>
  43. </div>
  44. </header>
  45. </div>
  46.  
  47. <div id="wrapcontent" class="wrapper">
  48. <?php get_constructor_slideshow() ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement