|
|
@@ -1,65 +1,15 @@
|
|
|
<?php
|
|
|
-$this->styles($this->html->style('pagination'));
|
|
|
+$this->styles($this->html->style('table'));
|
|
|
?>
|
|
|
|
|
|
<h3>Anime</h3>
|
|
|
<?= $this->_render('element', 'animetable', compact('anime')) ?>
|
|
|
<?= $this->html->link("More", array('controller' => 'search',
|
|
|
- 'action' => 'anime')); ?>
|
|
|
+ 'action' => 'anime')); ?>
|
|
|
<h3>Manga</h3>
|
|
|
-<hr>
|
|
|
-<table>
|
|
|
-<th>Title</th>
|
|
|
-<th>Date</th>
|
|
|
-<th>Type</th>
|
|
|
-<?php if(count($manga) > 0): ?>
|
|
|
-<?php foreach ($manga as $item): ?>
|
|
|
- <tr>
|
|
|
- <td>
|
|
|
- <a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a>
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <?= $item->aired ?>
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <?= $item->view_type ?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
-<?php endforeach ?>
|
|
|
-</table>
|
|
|
-<div style = "float:right">
|
|
|
- <?= $this->html->link("More", array('controller' => 'search',
|
|
|
- 'action' => 'anime')); ?>
|
|
|
-</div>
|
|
|
-<?php else: ?>
|
|
|
-<p> No entries found </p>
|
|
|
-<?php endif; ?>
|
|
|
+<?= $this->html->link("More", array('controller' => 'search',
|
|
|
+ 'action' => 'anime')); ?>
|
|
|
|
|
|
-<h3> K Drama </h3>
|
|
|
-<hr>
|
|
|
-<table>
|
|
|
-<th>Title</th>
|
|
|
-<th>Date</th>
|
|
|
-<th>Type</th>
|
|
|
-<?php if(count($kdrama) > 0): ?>
|
|
|
-<?php foreach ($kdrama as $item): ?>
|
|
|
- <tr>
|
|
|
- <td>
|
|
|
- <a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a>
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <?= $item->aired ?>
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <?= $item->view_type ?>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
-<?php endforeach ?>
|
|
|
-</table>
|
|
|
-<div style = "float:right">
|
|
|
- <?= $this->html->link("More", array('controller' => 'search',
|
|
|
- 'action' => 'anime')); ?>
|
|
|
-</div>
|
|
|
-<?php else: ?>
|
|
|
-<p>No Entries found</p>
|
|
|
-<?php endif; ?>
|
|
|
+<h3>K Drama</h3>
|
|
|
+<?= $this->html->link("More", array('controller' => 'search',
|
|
|
+ 'action' => 'anime')); ?>
|