Advertisement
Guest User

Untitled

a guest
Apr 10th, 2015
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--[if IE 7]>
  3. <html class="ie ie7" <?php language_attributes(); ?>>
  4. <![endif]-->
  5. <!--[if IE 8]>
  6. <html class="ie ie8" <?php language_attributes(); ?>>
  7. <![endif]-->
  8. <!--[if !(IE 7) | !(IE 8) ]><!-->
  9. <html <?php language_attributes(); ?>>
  10. <!--<![endif]-->
  11. <head>
  12. <meta charset="<?php bloginfo( 'charset' ); ?>">
  13. <meta name="viewport" content="width=device-width">
  14. <title><?php wp_title( '|', true, 'right' ); ?></title>
  15. <meta name="google-site-verification" content="pK5qdtBXGbYD9T7Qi2S5_wNvI7UWZADsQz8jrtU8n8Q" />
  16.  
  17.  
  18. <link rel="profile" href="http://gmpg.org/xfn/11">
  19. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  20. <!--[if lt IE 9]>
  21. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
  22. <![endif]-->
  23. <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/app.css" title="" type="text/css" />
  24. <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/assets/vendor/nivo-slider/nivo-slider.css" type="text/css" />
  25. <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/assets/vendor/nivo-slider/themes/default/default.css" type="text/css" />
  26. <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/assets/css/lightbox.css">
  27. <script src="<?php echo get_template_directory_uri(); ?>/js/vendor/jquery.js"></script>
  28. <script type="text/javascript">
  29. jQuery(document).ready(function($) {
  30. /* TABS FUNCT FOR RECIPES */
  31. $j = jQuery.noConflict();
  32. $('.smoothies, .cocktails, .bowls, .hm').show();
  33. $('.recipe-tab').click(function() {
  34. var type = $(this).attr('id');
  35. if ( type === "all" ) {
  36. $('.smoothies, .cocktails, .bowls, .hm').fadeIn();
  37. } else {
  38. $('.smoothies, .cocktails, .bowls, .hm').hide();
  39. $('.' + type).fadeIn();
  40. }
  41. });
  42. });
  43. /* END TABS FUNCT FOR RECIPES */
  44. </script>
  45.  
  46. <script>
  47. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  48. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  49. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  50. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  51.  
  52. ga('create', 'UA-61582035-1', 'auto');
  53. ga('send', 'pageview');
  54.  
  55. </script>
  56. </head>
  57. <body <?php body_class(); ?>
  58. <?php global $woocommerce; ?>
  59. <header id="main-header">
  60. <div id="head-row1" class="row">
  61. <div id="logo" class="small-3 large-3 column">
  62. <a href="<?php echo site_url(); ?>" >
  63. <img class="logo-large" src="<?php echo get_template_directory_uri(); ?>/assets/images/home/nativo_logo.png" alt="" />
  64. <img class="logo-mobile" style="display:none" src="<?php echo get_template_directory_uri(); ?>/assets/images/home/nativo_logo_mobile.png" alt="" />
  65. </a>
  66. </div><!--logo end-->
  67. <!--addons-->
  68. <div id="wholenav">
  69. <nav id="secondary-nav" class="small-3 large-3 small-offset-2 column">
  70. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  71. <a id="head-cart-contents" class="cart-contents" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d', '%d', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> <?php /* echo $woocommerce->cart->get_cart_total(); */ ?></a>
  72. </nav>
  73. <nav id="main-nav" class="small-5 column">
  74. <?php wp_nav_menu( array( 'theme_location' => 'secondary' ) ); ?>
  75. </nav>
  76. </div><!--wholenav-->
  77.  
  78. <div class="row mobnav">
  79. <nav class="top-bar" data-topbar="" data-options="is_hover: false">
  80. <ul class="title-area">
  81. <!-- Title Area -->
  82. <li class="toggle-topbar menu-icon"><a href=""></a></li>
  83. </ul>
  84.  
  85. <section class="top-bar-section" style="left: 0%;">
  86. <!-- <?php wp_nav_menu( array( 'theme_location' => 'secondary', 'menu_class' => 'left' ) ); ?> -->
  87. <?php wp_nav_menu( array( 'menu' => 'mobile-menu', 'menu_class' => 'left' ) ); ?>
  88. </section>
  89. </nav>
  90. </div><!--mobnav end-->
  91.  
  92. </div><!--main row end-->
  93. </header>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement