index.html.php 544 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. $this->styles($this->html->style('pagination'));
  3. ?>
  4. <?= $this->_render('element', 'search', compact('anime')) ?>
  5. <?= $this->Paginator->paginate(array('separator' => '')) ?>
  6. <table>
  7. <th>Title</th>
  8. <th>Date</th>
  9. <th>Type</th>
  10. <?php foreach ($content as $item): ?>
  11. <tr>
  12. <td>
  13. <a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a>
  14. </td>
  15. <td>
  16. <?= $item->aired ?>
  17. </td>
  18. <td>
  19. <?= $item->view_type ?>
  20. </td>
  21. </tr>
  22. <?php endforeach ?>
  23. </table>
  24. <?= $this->Paginator->paginate(array('separator' => '')) ?>