-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
39 lines (27 loc) · 1.2 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
<?php get_header(); ?>
<div class="page-banner">
<div class="page-banner__bg-image" style="background-image: url('<?php echo get_theme_file_uri('/images/ocean.jpg'); ?>');"></div>
<div class="page-banner__content container container--narrow">
<h1 class="page-banner__title">Our Blog</h1>
<div class="page-banner__intro">
<p>Get In Touch With Latest News</p>
</div>
</div>
</div>
<div class="container container--narrow page-section">
<?php
while(have_posts()){
the_post();
?>
<div class="post-item">
<h2><a class="headline headline--medium headline--post-title"><?php the_title() ?></a></h2>
<div class="metabox">
<p>posted by <?php the_author_posts_link() ?> on <?php the_time('n.j.y') ?> in <?php echo get_the_category_list(' ,') ?> </p>
</div>
<div class="genaric-content">
<p><?php the_excerpt(); ?></div></P>
<p><a class="btn btn--blue" href="<?php the_permalink() ?>"> Countinue Reading</a></p>
</div>
<?php } echo paginate_links() ?>
</div>
<?php get_footer(); ?>