-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
65 lines (53 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* Post index page.
*
* @since 0.1.0
* @package wasentha
*
* @global WP_Query $wp_query
*/
// Don't load directly
if ( ! defined( 'ABSPATH' ) ) {
die;
}
get_header();
?>
<section id="post-index" class="page-content">
<div class="row">
<?php
if ( have_posts() ) : ?>
<div class="small-12 columns">
<?php
while ( have_posts() ) :
the_post();
?>
<article <?php post_class(); ?>>
<?php get_template_part( 'partials/' . get_post_type(), 'loop-single' ); ?>
</article>
<?php
endwhile;
?>
</div>
<?php
else:
?>
<div class="small-12 medium-9 columns">
Nothing found.
</div>
<?php endif; ?>
<div class="pagination">
<?php
$post_type_object = get_post_type_object( get_post_type() );
$plural_label = $post_type_object->labels->name;
echo paginate_links( array(
'current' => ( get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1 ),
'prev_text' => sprintf( __( '« View Older %s', THEME_ID ), $plural_label ),
'next_text' => sprintf( __( 'View Newer %s »', THEME_ID ), $plural_label ),
) );
?>
</div>
</div>
</section>
<?php
get_footer();