index.html.php 382 B

1234567
  1. <table>
  2. <th>img</th><th>Name</th><th>Episodes</th><th>Type</th><th>Score</th>
  3. <?php foreach($content as $item): ?>
  4. <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>
  5. <?php endforeach; ?>
  6. </table>
  7. <?=$this->Paginator->paginate(); ?>