-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
58 lines (49 loc) · 1.44 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
<?php get_header(); ?>
<!-- Main -->
<div id="main">
<!-- Featured Post -->
<?php
$query = new WP_Query(array(
'post_type' => 'post',
'posts_per_page' => 1,
));
if ( $query->have_posts() ) :
while ( $query->have_posts() ) : $query->the_post();
get_template_part('template-parts/posts/post', 'big');
endwhile;
endif;
?>
<!-- Posts -->
<section class="posts">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
get_template_part('template-parts/posts/post', 'small');
endwhile;
?>
</section>
<!-- Footer -->
<footer>
<div class="pagination">
<?php
the_posts_pagination( array(
'screen_reader_text' => ' ',
'prev_text' => 'Prev',
) );
?>
<!-- <a href="#" class="previous">Prev</a>
<a href="#" class="page active">1</a>
<a href="#" class="page">2</a>
<a href="#" class="page">3</a>
<span class="extra">…</span>
<a href="#" class="page">8</a>
<a href="#" class="page">9</a>
<a href="#" class="page">10</a>
<a href="#" class="next">Next</a> -->
</div>
</footer>
<?php else: ?>
<h1><?php _e('Nothing Post Found!!', 'massively'); ?></h1>
<?php endif; ?>
</div>
<?php get_footer(); ?>