-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.php
36 lines (33 loc) · 1.09 KB
/
index.php
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
<?php get_header(); ?>
<div class="container">
<div class="row">
<section class="has-padding">
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-12">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
get_template_part( 'template-parts/content', get_post_format() );
}
}
?>
</div><!--/.col-lg-8-->
<div class="col-lg-3 col-md-3 col-sm-3 hidden-xs pull-right">
<aside class="pixova-blog-sidebar">
<?php
if ( is_active_sidebar( 'blog-sidebar' ) ) {
dynamic_sidebar( 'blog-sidebar' );
} else {
the_widget( 'WP_Widget_Search', sprintf( 'title=%s', __( 'Search', 'pixova-lite' ) ) );
the_widget( 'WP_Widget_Calendar', sprintf( 'title=%s', __( 'Calendar', 'pixova-lite' ) ) );
}
?>
</aside> <!--/.pixova-blog-sidebar-->
</div><!--/.col-lg-3-->
<nav class="pixova-custom-pagination col-lg-12">
<?php the_posts_pagination(); ?>
</nav><!--/.pixova-custom-pagination-->
</section><!--/section-->
</div><!--/.row-->
</div><!--/.container-->
<?php get_footer(); ?>