1 | <?php get_header(); ?>
|
---|
2 |
|
---|
3 | <div id="xpress_wrap">
|
---|
4 |
|
---|
5 | <?php if(xpress_is_theme_sidebar_disp()) : ?>
|
---|
6 |
|
---|
7 | <div id="xpress_content" class="narrowcolumn">
|
---|
8 |
|
---|
9 | <?php else : ?>
|
---|
10 |
|
---|
11 | <div id="xpress_content" class="narrowcolumn_nonside">
|
---|
12 |
|
---|
13 | <?php endif; ?>
|
---|
14 |
|
---|
15 | <div id="xpress_header">
|
---|
16 | <div id="xpress_headerimg">
|
---|
17 | <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
|
---|
18 | <div class="description"><?php bloginfo('description'); ?></div>
|
---|
19 | </div>
|
---|
20 | </div>
|
---|
21 |
|
---|
22 | <?php if (have_posts()) : ?>
|
---|
23 |
|
---|
24 | <h2 class="pagetitle"><?php _e('Search Results', 'xpress'); ?></h2>
|
---|
25 |
|
---|
26 | <div class="xpress_navigation">
|
---|
27 | <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'xpress')) ?></div>
|
---|
28 | <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'xpress')) ?></div>
|
---|
29 | </div>
|
---|
30 |
|
---|
31 |
|
---|
32 | <?php while (have_posts()) : the_post(); ?>
|
---|
33 |
|
---|
34 | <div class="post">
|
---|
35 | <?php if (function_exists('hotDates')) { hotDates(); }?>
|
---|
36 | <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h3>
|
---|
37 | <small><?php the_time('l, F jS, Y') ?></small>
|
---|
38 |
|
---|
39 | <p class="postmetadata"><?php if(function_exists('the_tags')) : ?><?php the_tags(__('Tags:', 'xpress') . ' ', ', ', '<br />'); ?><?php endif; ?> <?php printf(__('Posted in %s', 'xpress'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'xpress'), '', ' | '); ?> <?php comments_popup_link(__('No Comments »', 'xpress'), __('1 Comment »', 'xpress'), __('% Comments »', 'xpress'), '', __('Comments Closed', 'xpress') ); ?></p>
|
---|
40 | </div>
|
---|
41 |
|
---|
42 | <?php endwhile; ?>
|
---|
43 |
|
---|
44 | <div class="xpress_navigation">
|
---|
45 | <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'xpress')) ?></div>
|
---|
46 | <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'xpress')) ?></div>
|
---|
47 | </div>
|
---|
48 |
|
---|
49 | <?php else : ?>
|
---|
50 |
|
---|
51 | <h2 class="center"><?php _e('No posts found. Try a different search?', 'xpress'); ?></h2>
|
---|
52 | <?php include (get_template_directory() . '/searchform.php'); ?>
|
---|
53 |
|
---|
54 | <?php endif; ?>
|
---|
55 |
|
---|
56 | </div>
|
---|
57 | </div>
|
---|
58 |
|
---|
59 | <?php get_sidebar(); ?>
|
---|
60 |
|
---|
61 | <?php get_footer(); ?>
|
---|