Advertisement
Guest User

Untitled

a guest
Feb 9th, 2014
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.26 KB | None | 0 0
  1. <?php if( is_archive('shop_vendor') ):
  2.  
  3. get_template_part('templates/head'); ?>
  4. <body <?php body_class(); ?>>
  5. <div id="fb-root"></div>
  6. <script>(function(d, s, id) {
  7.   var js, fjs = d.getElementsByTagName(s)[0];
  8.   if (d.getElementById(id)) return;
  9.   js = d.createElement(s); js.id = id;
  10.   js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
  11.   fjs.parentNode.insertBefore(js, fjs);
  12. }(document, 'script', 'facebook-jssdk'));</script>
  13.  
  14.  
  15.   <!--[if lt IE 8]>
  16.     <div class="alert alert-warning">
  17.       <?php _e('You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.', 'roots'); ?>
  18.     </div>
  19.   <![endif]-->
  20.  
  21.   <?php
  22.     do_action('get_header');
  23.     get_template_part('templates/header-top-navbar-shop');
  24.   ?>
  25.  
  26.   <div class="wrap container" role="document">
  27.     <div class="content row">
  28.  
  29.       <?php if (roots_display_sidebar() && !is_single() ) : ?>
  30.         <aside class="sidebar <?php echo roots_sidebar_class(); ?>" role="complementary">
  31.           <?php include roots_sidebar_path(); ?>
  32.         </aside><!-- /.sidebar -->
  33.       <?php endif; ?>
  34.     <main class="main <?php echo roots_main_class(); ?> col-sm-offset-4 col-md-offset-3" role="main">
  35. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement