-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
31 lines (21 loc) · 813 Bytes
/
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
<?php get_header(); ?>
<div class="row">
<div class="columns">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(''); ?>>
<header class="post-header">
<h2 class="post-title"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
</header>
<section class="post-content">
<?php the_excerpt(); ?>
</section>
<footer class="post-footer">
<p class="tags"><?php the_tags(); ?></p>
</footer>
</article>
<?php endwhile; else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>