Remove template_part, template_sidebar, temp sidebar fix

This commit is contained in:
Ben Word
2015-12-26 17:34:43 -06:00
parent 67c190fc41
commit abeea0f76c
11 changed files with 17 additions and 35 deletions

View File

@@ -1,6 +1,6 @@
<!doctype html>
<html <?php language_attributes(); ?>>
<?php App\template_part('partials/head'); ?>
<?php get_template_part('partials/head'); ?>
<body <?php body_class(); ?>>
<!--[if IE]>
<div class="alert alert-warning">
@@ -9,7 +9,7 @@
<![endif]-->
<?php
do_action('get_header');
App\template_part('partials/header');
get_template_part('partials/header');
?>
<div class="wrap container" role="document">
<div class="content row">
@@ -18,14 +18,14 @@
</main><!-- /.main -->
<?php if (App\display_sidebar()) : ?>
<aside class="sidebar">
<?php App\template_sidebar(); ?>
<?php get_template_part('partials/sidebar'); ?>
</aside><!-- /.sidebar -->
<?php endif; ?>
</div><!-- /.content -->
</div><!-- /.wrap -->
<?php
do_action('get_footer');
App\template_part('partials/footer');
get_template_part('partials/footer');
wp_footer();
?>
</body>