blob: a05f2691fb55e8602f907eb1cc14e0d53eadc9e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
$this->styles($this->html->style('table'));
?>
<h3>Anime</h3>
<?= $this->_render('element', 'animetable', compact('anime')) ?>
<?= $this->html->link("More", array('controller' => 'search',
'action' => 'anime')); ?>
<h3>Manga</h3>
<?= $this->html->link("More", array('controller' => 'search',
'action' => 'anime')); ?>
<h3>K Drama</h3>
<?= $this->html->link("More", array('controller' => 'search',
'action' => 'anime')); ?>
|