index.html.php 1.0 KB

12345678910111213141516171819202122232425
  1. <div class="container_12">
  2. <div class="grid_4">
  3. <h2> Search options </h2>
  4. <hr />
  5. <?= $this->form->create(null, array('method' => 'get')); ?>
  6. <?= $this->form->field('search', array('type' => 'textbox', 'class' => 'sidebar-search', 'style' => 'width:200px')); ?>
  7. <?= $this->form->select('type', array('Anime' => 'Anime',
  8. 'Manga' => 'Manga',
  9. 'Kdrama' => 'Kdrama')); ?>
  10. <?= $this->form->submit('Search', array('style' => 'width: 100px')); ?>
  11. <?= $this->form->end(); ?>
  12. </div>
  13. <div class="grid_8">
  14. <table class="table">
  15. <tr><th>img</th><th>Name</th><th>Episodes</th><th>Type</th><th>Score</th></tr>
  16. <?php foreach($content as $item): ?>
  17. <tr><td>"image"</td><td><a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a></td> <td><?= $item->episode_count ?></td><td><?= $item->view_type ?></td><td><?= $item->mal_score ?></td></tr>
  18. <?php endforeach; ?>
  19. </table>
  20. <?=$this->Paginator->paginate(array('separator' => '', 'action' => 'index/anime')); ?>
  21. </div>
  22. </div>
  23. <br class="cl">
  24. </div>