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
38
39
40
41
42
43
44
45
46
47
48
<?php
get_header();
$column = 'col-md-9';
if( 'full-width' == get_theme_mod( 'page_template', 'right-sidebar' ) ){
$column = 'col-md-12';
}
?>
<div class="row">
<?php
if( 'left-sidebar' == get_theme_mod( 'page_template', 'right-sidebar' ) ){
get_sidebar();
}
if( 'no-sidebar' == get_theme_mod( 'page_template', 'right-sidebar' ) ) {
$column = 'col-md-12';
}
?>
<div class="<?php echo $column; ?> blog-grid">
<div class="blog-services">
<div class="row news">
<?php get_template_part( 'parts/content', 'archive' ); ?>
</div>
</div>
</div>
<?php
if( 'right-sidebar' == get_theme_mod( 'page_template', 'right-sidebar' ) ) {
get_sidebar();
}
?>
</div>
<?php
offshore_content_after();
get_footer();
?>