-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
26 lines (26 loc) · 1.02 KB
/
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
<?php get_header();?>
<div class="container">
<?php if (get_option('strive_breadcrumb') == 'Display') { ?>
<div class="subsidiary box">
<div class="bulletin fourfifth">
当前位置:<a href="<?php bloginfo('siteurl');?>/" title="返回首页">首页</a> > “<?php echo htmlspecialchars($s); ?>”的搜索结果
</div>
</div>
<?php } else{if(!is_mobile()){ echo '<div class="row"></div>';}} ?>
<?php get_sidebar();?>
<div class="mainleft">
<ul id="post_container" class="masonry clearfix">
<?php include('includes/list_post.php'); ?>
</ul>
<?php if (!have_posts()) {?>
<div class="clear"></div>
<div class="post article article_c box">
<h3 class="center">非常抱歉,无法搜索到与之相匹配的信息。</h3>
</div>
<?php }?>
<div class="clear"></div>
<div class="navigation container"><?php pagination(5);?></div>
</div>
</div>
<div class="clear"></div>
<?php get_footer();?>