-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
73 lines (55 loc) · 2.1 KB
/
archive.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
66
67
68
<?php get_header(); ?>
<h2>Archive.php</h2>
<!-- Category section-->
<section class="categories">
<div class="container">
<div class="flex flex-row flex-wrap">
<?php
//load template categories-content.php
get_template_part('templates/temp/categories', 'content')
?>
</div>
</div>
</section>
<!-- end Category section-->
<!-- Post Area-->
<section class="post-area">
<div class="wrapper">
<!-- two sides columms-->
<div class="row">
<div class="col-8-lg col-12-md">
<div class="grid">
<?php
//load template post-content.php
get_template_part('templates/temp/post', 'content')
?>
</div>
<!-- pagination section-->
<div class="row">
<div class="col-12-lg text-center">
<div class="pagination">
<?php
echo paginate_links(array(
'mid_size' => 2,
'prev_text' => '<span class="fa fa-arrow-left">Prev</span>',
'next_text' => '<span class="fa fa-arrow-rignt">Next</span>'
));
?>
<!-- <a href=""><span>1</span></a>
<a href=""><span>2</span></a>
<a href=""><span>3</span></a>
<a href=""><span class="fa fa-arrow-right">Next</span></a> -->
</div>
</div>
</div>
<!-- end pagination section-->
</div>
<div class="col-4-lg col-12-md">
<!-- get the sidebar template-->
<?php get_sidebar();?>
</div>
</div>
</div>
</section>
<!-- end post Area-->
<?php get_footer(); ?>