-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
64 lines (54 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Enqueue Styles -->
<?php
wp_head();
?>
</head>
<body>
<!-- header -->
<?php get_header() ?>
<!-- blog -->
<section id="archiveBlog">
<!-- page heading -->
<div class="head">
<div class="container">
<h1 class="heading">
<?php
echo get_the_title(get_option('page_for_posts'));
?>
</h1>
<?php homedecor_breadcrumbs(); ?>
</div>
</div>
<div class="container">
<!-- main content -->
<div class="main">
<div class="blogs">
<?php
if (have_posts()) {
while (have_posts()) {
the_post();
get_template_part('template-parts/content', 'archive');
}
} else {
echo "No news and events are available";
}
?>
</div>
<?php the_posts_pagination(); ?>
</div>
<!-- sidebar -->
<?php if (is_active_sidebar('blog-archive-sidebar')) : ?>
<aside id="secondary" class="widget-area sidebar-blog-archive">
<?php dynamic_sidebar('blog-archive-sidebar'); ?>
</aside>
<?php endif; ?>
</div>
</section>
<?php get_footer() ?>
</body>
</html>