-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
28 lines (26 loc) · 884 Bytes
/
home.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
<?php get_header(); ?>
<main>
<div class="row justify-content-between">
<div class="col-12 col-lg-8">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="item">
<h2 class="post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="post-date">Posted On: <span><?php the_date('F jS, Y'); ?></span></div>
<?php the_content(); ?>
<?php echo get_the_tag_list('<p>Tags: ',', ','</p>'); ?>
</div>
<?php endwhile; ?>
<?php the_posts_pagination(); ?>
<?php else :
get_template_part( 'templates/no-posts');
endif; ?>
</div>
<div class="col-12 col-md-3">
<aside>
<?php get_template_part('templates/sidebar'); ?>
</aside>
</div>
</div>
</main>
<?php get_footer(); ?>