-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
75 lines (35 loc) · 1.09 KB
/
index.php
File metadata and controls
75 lines (35 loc) · 1.09 KB
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
66
67
68
69
70
71
72
73
74
75
<?php get_header(); ?>
<section id="content">
<div class="wrap-content zerogrid">
<div class="row block03">
<div class="col-2-3">
<div class="wrap-col">
<?php
while ( have_posts() ) : the_post(); ?>
<article>
<?php the_post_thumbnail(); ?>
<h2><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a></h2>
<div class="info">[By <?php the_author(); ?> on <?php the_time( 'F d, Y' ); ?> with <?php comments_popup_link( 'No Comments', '1 Comments', '% Comments', 'zboom', 'Comments Off' ); ?> ]</div>
<?php read_more(15); ?>
</article>
<?php endwhile; ?>
<div id="pagi">
<?php
the_posts_pagination( array(
'show_all' => true,
'prev_text' => 'Previous',
'next_text' => 'Next',
'screen_reader_text' => ' ',
) );
?>
</div>
</div>
</div>
<div class="col-1-3">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>