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

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

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

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

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