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