-
Notifications
You must be signed in to change notification settings - Fork 2
/
archive.php
21 lines (19 loc) · 951 Bytes
/
archive.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php get_header(); ?>
<div class="single-main cat"> <!--Single-Main-->
<?php if (have_posts()) : ?>
<h2>Archive for "<?php single_cat_title(); ?>"</h2>
<?php while (have_posts()) : the_post(); ?>
<div class="list">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Read more on <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
</div>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
</div><!--Single-Main-->
<?php get_sidebar(); ?>
<div class="ffix"></div>
<?php get_footer(); ?>