| 12345678910111213141516171819202122232425262728 |
- <?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' => '')) ?>
|