forked from mobilizetoday/wordpress-jquerymobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
executable file
·29 lines (29 loc) · 891 Bytes
/
search.php
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 class="without-search">
<div class="right">
<?php if (have_posts()) : ?>
<?php get_search_form(); ?>
<ul data-role="listview" data-inset="true"<?php jqmobile_ui('post');?>>
<?php while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>">
<p class="ui-li-aside"><?php the_time('Y-m-d'); ?></p>
<h3><?php the_title(); ?></h3>
<p><strong><?php the_author(); ?></strong></p>
<div><?php the_excerpt(); ?></div>
<?php if (comments_open()): ?>
<span class="ui-li-count"><?php comments_number('0', '1', '%' );?></span>
<?php endif; ?>
</a>
</li>
<?php endwhile; ?>
</ul>
<?php include (TEMPLATEPATH . '/inc/nav.php' ); ?>
<?php else : ?>
<?php get_search_form(); ?>
<h2>No posts found.</h2>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>