-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
23 lines (21 loc) · 890 Bytes
/
single.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
get_header(); ?>
<div class="wrapper" id="single-wrapper">
<div class="container" id="content" tabindex="-1">
<div class="row">
<?php if ( get_theme_mod( 'show_left_sidebar' ) ) : ?>
<div class="col-md-4 widget-area" role="complementary" id="left-sidebar">
<?php if ( is_active_sidebar( 'left-sidebar' ) ) : ?>
<?php dynamic_sidebar( 'left-sidebar' ); ?>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="content-area col-md-8 content-area" id="primary">
<main class="site-main" id="main">
<?php get_template_part( 'loop-templates/content-single' ); ?>
</main>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>