index.html.php 580 B

1234567891011121314151617
  1. <div class="container_12">
  2. <div class="grid_4">
  3. search options lol
  4. </div>
  5. <div class="grid_8">
  6. <table class="table">
  7. <th>img</th><th>Name</th><th>Episodes</th><th>Type</th><th>Score</th>
  8. <?php foreach($content as $item): ?>
  9. <tr><td>"image"</td> <td><a href="/anime/<?= $item->special_id ?>"><?= $item->title ?></a></td> <td><?= $item->episode_count ?></td><td><?= $item->view_type ?></td><td><?= $item->mal_score ?></td></tr>
  10. <?php endforeach; ?>
  11. </table>
  12. <?=$this->Paginator->paginate(array('separator' => '', 'action' => 'index/anime')); ?>
  13. </div>
  14. </div>
  15. <br class="cl">
  16. </div>