blob: 2afb32014749fba3684242e88675633f7dd8d6b1 (
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
|
<?php
$this->styles($this->html->style('pagination'));
?>
<?= $this->_render('element', 'search', compact('anime')) ?>
<?= $this->Paginator->paginate(array('separator' => '')) ?>
<table>
<th>Title</th>
<th>Date</th>
<th>Type</th>
<?php foreach ($content 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>
<?= $this->Paginator->paginate(array('separator' => '')) ?>
|