forked from chakhsu/pinghsu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-search.php
34 lines (32 loc) · 1.59 KB
/
page-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
30
31
32
33
34
<?php
/**
* Template Page of Search
*
* @package custom
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
?>
<div class="main-content page-page">
<div class="search-page">
<form id="search" class="search-form" method="post" action="<?php $this->options->siteUrl(); ?>" role="search">
<span class="search-box clearfix">
<input type="text" id="input" class="input" name="s" required="true" placeholder="Search..." maxlength="30" autocomplete="off">
<button type="submit" class="spsubmit"><i class="icon-search"></i></button>
</span>
</form>
<?php $this->widget('Widget_Metas_Tag_Cloud', 'sort=count&ignoreZeroCount=1&desc=1&limit=50')->to($tags); ?>
<div class="search-tags">
<?php parseContent($this); ?>
<?php if($tags->have()): ?>
<?php while ($tags->next()): ?>
<a href="<?php $tags->permalink(); ?>" class="<?php if ($this->options->colorBgPosts == 'defaultColor'): ?> bg-white<?php elseif ($this->options->colorBgPosts == 'customColor'): ?>text-white bg-<?php echo randBgColor(); ?><?php endif;?>"># <?php $tags->name(); ?>(<?php $tags->count(); ?>)</a>
<?php endwhile; ?>
<?php else: ?>
<p> Nothing here ! </p>
<?php endif; ?>
<div class="search-tags-hr <?php if ($this->options->colorBgPosts == 'defaultColor'): ?> bg-deepgrey<?php elseif ($this->options->colorBgPosts == 'customColor'): ?> bg-<?php echo randBgColor(); ?><?php endif; ?>"></div>
</div>
</div>
</div>
<?php $this->need('footer.php'); ?>