| 1 |
<?php |
| 2 |
/** |
| 3 |
* <meta content="charset=UTF-8"> |
| 4 |
* @package Welcart |
| 5 |
* @subpackage Welcart Default Theme |
| 6 |
*/ |
| 7 |
get_header(); |
| 8 |
?> |
| 9 |
|
| 10 |
<div id="content" class="two-column"> |
| 11 |
|
| 12 |
<h1 class="pagetitle"><?php _e('Search Results', 'usces'); ?></h1> |
| 13 |
|
| 14 |
<div class="catbox"> |
| 15 |
|
| 16 |
<?php if (have_posts()) : ?> |
| 17 |
|
| 18 |
|
| 19 |
<div class="navigation"> |
| 20 |
<div class="alignleft"><?php next_posts_link(__('Next article »', 'usces')); ?></div> |
| 21 |
<div class="alignright"><?php previous_posts_link(__('« Previous article', 'usces')); ?></div> |
| 22 |
</div> |
| 23 |
|
| 24 |
<?php while (have_posts()) : the_post(); ?> |
| 25 |
<div <?php post_class(); ?>> |
| 26 |
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> |
| 27 |
<div class="entry clearfix"> |
| 28 |
<?php if(!usces_is_item()): ?> |
| 29 |
<p><small><?php the_date('Y/n/j'); ?></small></p> |
| 30 |
<?php endif; ?> |
| 31 |
<?php the_content() ?> |
| 32 |
</div> |
| 33 |
|
| 34 |
</div> |
| 35 |
|
| 36 |
<?php endwhile; ?> |
| 37 |
|
| 38 |
<div class="navigation"> |
| 39 |
<div class="alignleft"><?php next_posts_link(__('Next article »', 'usces')); ?></div> |
| 40 |
<div class="alignright"><?php previous_posts_link(__('« Previous article', 'usces')); ?></div> |
| 41 |
</div> |
| 42 |
|
| 43 |
<?php else : ?> |
| 44 |
|
| 45 |
<p><?php echo __('No posts found.', 'usces'); ?></p> |
| 46 |
|
| 47 |
<?php endif; ?> |
| 48 |
|
| 49 |
</div><!-- end of catbox --> |
| 50 |
</div><!-- end of content --> |
| 51 |
|
| 52 |
<?php get_sidebar( 'other' ); ?> |
| 53 |
|
| 54 |
<?php get_footer(); ?> |
| 55 |
|