-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdate.php
49 lines (33 loc) · 1.01 KB
/
date.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
<?php get_header(); ?>
<?php get_template_part("/page-templates/common/hero");
?>
<section class="ftco-section bg-light">
<div class="container">
<?php the_archive_title('<h2 class="jarchive">','</h2>');?>
<div class="row">
<?php
while(have_posts()):
the_post();?>
<div class="col-lg-12 ftco-animate">
<h2 class="mb-5 bg-light text-dark text-center"><a href="<?php the_permalink();?>"><?php the_title();?></a></h2>
</div>
<?php endwhile;?>
</div>
</div>
<div class="container paginations">
<div class="row">
<div class="col-md-4"> </div>
<div class="col-md-8">
<?php the_posts_pagination(
array(
screen_reader_text=>" ",
)
);?>
</div>
</div>
</div>
</section>
<?php
get_template_part("/page-templates/common/email");
?>
<?php get_footer();?>