summaryrefslogtreecommitdiffstats
path: root/views/search/index.html.php
blob: 167257051d0f5ad61eff5918b62583de35639953 (plain)
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
<?php
$this->styles($this->html->style('table'));
$this->styles($this->html->style('search'));
?>

<?= $this->_render('element', 'search') ?>

<?php if(count($anime) > 0): ?>
<h2 class="ribbon">Anime</h2>
<div class="triangle-ribbon"></div>
	<?= $this->_render('element', 'animetable') ?>
	<p class="more">
	<a href="/search/anime/?q=<?= $q ?>">More</a>
	</p>
<?php endif ?>

<?php if(count($manga) > 0): ?>
<h2 class="ribbon">Manga</h2>
<div class="triangle-ribbon"></div>
	<?= $this->_render('element', 'mangatable') ?>
	<p class="more">
	<a href="/search/manga/?q=<?= $q ?>">More</a>
	</p>
<?php endif ?>

<?php if(count($kdrama) > 0): ?>
<h2 class="ribbon">K-Drama</h2>
<div class="triangle-ribbon"></div>
	<?= $this->_render('element', 'kdramatable') ?>
	<p class="more">
	<a href="/search/kdrama/?q=<?= $q ?>">More</a>
	</p>
<?php endif ?>