|
Revision 31, 0.9 kB
(checked in by drakewils..@gmail.com, 5 months ago)
|
headlines theme. for realz this time
|
| Line | |
|---|
| 1 |
<?php get_header(); ?> |
|---|
| 2 |
|
|---|
| 3 |
<div id="main-col"> |
|---|
| 4 |
|
|---|
| 5 |
<?php if (have_posts()) : ?> |
|---|
| 6 |
|
|---|
| 7 |
<h2>Search Results</h2> |
|---|
| 8 |
|
|---|
| 9 |
<div class="navigation"> |
|---|
| 10 |
<div><?php next_posts_link('« Older Entries') ?></div> |
|---|
| 11 |
<div><?php previous_posts_link('Newer Entries »') ?></div> |
|---|
| 12 |
</div> |
|---|
| 13 |
|
|---|
| 14 |
<?php while (have_posts()) : the_post(); ?> |
|---|
| 15 |
|
|---|
| 16 |
<ul> |
|---|
| 17 |
<li id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> |
|---|
| 18 |
</ul> |
|---|
| 19 |
|
|---|
| 20 |
<?php endwhile; ?> |
|---|
| 21 |
|
|---|
| 22 |
<div class="navigation"> |
|---|
| 23 |
<div><?php next_posts_link('« Older Entries') ?></div> |
|---|
| 24 |
<div><?php previous_posts_link('Newer Entries »') ?></div> |
|---|
| 25 |
</div> |
|---|
| 26 |
|
|---|
| 27 |
<?php else : ?> |
|---|
| 28 |
|
|---|
| 29 |
<h2>No posts found. Try a different search?</h2> |
|---|
| 30 |
<?php include (TEMPLATEPATH . '/searchform.php'); ?> |
|---|
| 31 |
|
|---|
| 32 |
<?php endif; ?> |
|---|
| 33 |
|
|---|
| 34 |
</div> |
|---|
| 35 |
|
|---|
| 36 |
<?php include (TEMPLATEPATH . '/socialsidebar.php'); ?> |
|---|
| 37 |
|
|---|
| 38 |
<?php get_sidebar(); ?> |
|---|
| 39 |
|
|---|
| 40 |
<?php get_footer(); ?> |
|---|