forked from roots/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.php
31 lines (26 loc) · 1.15 KB
/
base.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php get_template_part('templates/head'); ?>
<body <?php body_class(); ?>>
<!--[if lt IE 7]><div class="alert">Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</div><![endif]-->
<?php
// Use Bootstrap's navbar if enabled in config.php
if (current_theme_supports('bootstrap-top-navbar')) {
get_template_part('templates/header-top-navbar');
} else {
get_template_part('templates/header');
}
?>
<div id="wrap" class="container" role="document">
<div id="content" class="row">
<div id="main" class="<?php echo roots_main_class(); ?>" role="main">
<?php include roots_template_path(); ?>
</div>
<?php if (roots_display_sidebar()) : ?>
<aside id="sidebar" class="<?php echo roots_sidebar_class(); ?>" role="complementary">
<?php get_template_part('templates/sidebar'); ?>
</aside>
<?php endif; ?>
</div><!-- /#content -->
</div><!-- /#wrap -->
<?php get_template_part('templates/footer'); ?>
</body>
</html>