Advertisement
Guest User

Untitled

a guest
May 26th, 2014
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.97 KB | None | 0 0
  1. <?php get_template_part('templates/head'); ?>
  2. <body <?php body_class(); ?>>
  3.  
  4.   <!--[if lt IE 8]>
  5.     <div class="alert alert-warning">
  6.       <?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'); ?>
  7.     </div>
  8.   <![endif]-->
  9.  
  10.   <?php
  11.     do_action('get_header');
  12.     // Use Bootstrap's navbar if enabled in config.php
  13.     if (current_theme_supports('bootstrap-top-navbar')) {
  14.       get_template_part('templates/header-top-navbar');
  15.     } else {
  16.       get_template_part('templates/header');
  17.     }
  18.   ?>
  19.     <div class="wrap container-fluid" role="document">
  20.     <div class="content row">
  21.       <main class="main <?php echo roots_main_class(); ?>" role="main">
  22.         <?php include roots_template_path(); ?>
  23.       </main><!-- /.main -->
  24.     </div><!-- /.content -->
  25.   </div><!-- /.wrap -->
  26.  
  27.   <?php get_template_part('templates/footer'); ?>
  28.  
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement