-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharchive.php
More file actions
38 lines (22 loc) · 789 Bytes
/
archive.php
File metadata and controls
38 lines (22 loc) · 789 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
27
28
29
30
31
32
33
34
35
36
37
38
<?php get_header(); ?>
<div class="site-content">
<?php if ( have_posts() ) : ?>
<div class="row">
<div class="columns medium-8 medium-centered">
<?php echo Hand_Built::get_template_part( 'archive-page-header' ); ?>
<?php while( have_posts() ) : the_post(); ?>
<article <?php post_class(); ?>
<header class="page-header">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><?php edit_post_link( ' <small><i class="fa fa-pencil"></i></small>' ); ?></h3>
</header>
<div class="page-content">
<?php the_excerpt(); ?>
</div>
</article>
<?php endwhile; ?>
<?php echo Hand_Built::get_template_part( 'pagination' ); ?>
</div>
</div>
<?php endif; ?>
</div>
<?php get_footer(); ?>