-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
37 lines (34 loc) · 1.6 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
37
<?php get_header();
get_template_part('templates/page', 'header'); ?>
<div id="content" class="container">
<div class="row">
<div class="main <?php echo esc_attr( pinnacle_main_class() ); ?> postlist" role="main">
<div class="entry-content" itemprop="mainContentOfPage">
<?php if (!have_posts()) : ?>
<div class="alert">
<?php _e('Sorry, no results were found.', 'ona-white-angus'); ?>
</div>
<?php get_search_form(); ?>
<?php endif; ?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('templates/content', get_post_format()); ?>
<?php endwhile; ?>
<?php if ($wp_query->max_num_pages > 1) :
if(function_exists('pinnacle_wp_pagination')) {
pinnacle_wp_pagination();
} else { ?>
<nav class="post-nav">
<ul class="pager">
<li class="previous"><?php next_posts_link(__('← Older posts', 'ona-white-angus')); ?></li>
<li class="next"><?php previous_posts_link(__('Newer posts →', 'ona-white-angus')); ?></li>
</ul>
</nav>
<?php }
endif; ?>
</div>
</div><!-- /.main -->
<?php get_sidebar(); ?>
</div><!-- /.row-->
</div><!-- /.content -->
</div><!-- /.wrap -->
<?php get_footer(); ?>