| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- $this->styles($this->html->style('anime'));
- $this->styles($this->html->style('pagination'));
- ?>
- <h2 class="ribbon full">Anime</h2>
- <div class="triangle-ribbon"></div>
- <?= $this->Paginator->paginate(array('separator' => '')) ?>
- <table>
- <th>Title</th>
- <th>Date</th>
- <th>Type</th>
- <?php foreach ($content as $anime): ?>
- <tr>
- <td>
- <a href="/anime/view/<?= $anime->special_id ?>"><?= $anime->title ?></a>
- <?php if ($anime->foreign_titles || $anime->alternative_titles): ?>
- <span class="alt_titles">
- <?php if ($anime->foreign_titles): ?>
- <?= $anime->foreign_titles[0] ?>
- <?php endif ?>
- <?php if ($anime->alternative_titles): ?>
-
- <?= $anime->alternative_titles[0] ?>
- <?php endif ?>
- </span>
- <?php endif ?>
- </td>
- <td>
- <?= $anime->aired ?>
- </td>
- <td>
- <?= $anime->view_type ?>
- </td>
- </tr>
- <?php endforeach ?>
- </table>
- <?= $this->Paginator->paginate(array('separator' => '')) ?>
|