-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (23 loc) · 828 Bytes
/
index.php
File metadata and controls
26 lines (23 loc) · 828 Bytes
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
<?php get_header(); ?>
<div class="content">
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<h2>Blog</h2>
<hr>
<div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="content-padding">
<h6><?php posted_on(); ?> by <?php the_field('author'); ?></h6>
<h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
</div>
<?php post_navigation(); ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>