-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
executable file
·37 lines (37 loc) · 1016 Bytes
/
content.php
File metadata and controls
executable file
·37 lines (37 loc) · 1016 Bytes
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
32
33
34
35
36
37
<?php
/**
* @package WordPress
* @subpackage monochromatic
*/
?>
<section id="content">
<?php if ( get_theme_mod( 'monochromatic_layout' ) == "right") { ?>
<div class="row">
<aside id="side">
<?php get_template_part( 'sidebar', 'index' ); //the Sidebar ?>
</aside>
<main id="main">
<?php get_template_part( 'loop', 'index' ); //the Loop ?>
</main>
<!--clearing break-->
<br class="clear" />
</div>
<?php } elseif ( get_theme_mod( 'monochromatic_layout' ) == "full") { ?>
<div class="row">
<main id="main">
<?php get_template_part( 'loop', 'index' ); //the Loop ?>
</div>
</div>
<?php } else { ?>
<div class="row">
<main id="main">
<?php get_template_part( 'loop', 'index' ); //the Loop ?>
</main>
<aside id="side">
<?php get_template_part( 'sidebar', 'index' ); //the Sidebar ?>
</aside>
<!--clearing break-->
<br class="clear" />
</div>
<?php } ?>
</section>