-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
46 lines (32 loc) · 821 Bytes
/
index.php
File metadata and controls
46 lines (32 loc) · 821 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
38
39
40
41
42
43
44
45
46
<?php
/**
*
* This template is used to display a blog. The content is displayed in post formats.
*
* @package Block Lite
* @since Block Lite 1.0
*/
get_header(); ?>
<!-- BEGIN .post class -->
<div <?php post_class(); ?> id="page-<?php the_ID(); ?>">
<!-- BEGIN .row -->
<div class="row">
<!-- BEGIN #blog-posts-->
<section id="blog-posts" class="block-post-layout clearfix">
<?php get_template_part( 'content/loop', 'blog' ); ?>
<!-- END #blog-posts -->
</section>
<!-- END .row -->
</div>
<?php if ( is_active_sidebar( 'home-bottom' ) ) { ?>
<!-- BEGIN .row -->
<div class="row">
<section class="organic-ocw-container">
<?php dynamic_sidebar( 'home-bottom' ); ?>
</section>
<!-- END .row -->
</div>
<?php } ?>
<!-- END .post class -->
</div>
<?php get_footer(); ?>