summaryrefslogtreecommitdiffstats
path: root/views/Search/index.html.php
blob: 16e4f33815ede2cc8295351d0ff18107f85e2b36 (plain)
1
2
3
4
5
6
7
<table class="table">
<th>img</th><th>Name</th><th>Episodes</th><th>Type</th><th>Score</th>
<?php foreach($content as $item): ?>
<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>
<?php endforeach; ?>
</table>
<?=$this->Paginator->paginate(array('separator' => '', 'action' => 'index')); ?>