forked from june29/wp29
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (19 loc) · 722 Bytes
/
Copy pathindex.php
File metadata and controls
29 lines (19 loc) · 722 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
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<div class="autopagerize_page_element">
<?php while (have_posts()) : the_post(); ?>
<?php include (TEMPLATEPATH . '/entry.php'); ?>
<?php endwhile; ?>
</div>
<div class="navigation">
<div class="align-left"><?php next_posts_link('<< Older posts') ?></div>
<div class="align-right"><?php previous_posts_link('Newer posts >>') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_footer(); ?>