| 1234567891011121314151617181920212223242526272829 |
- <table>
- <th>Title</th>
- <th>Date</th>
- <th>Type</th>
- <?php foreach ($anime as $a): ?>
- <tr>
- <td>
- <a href="/anime/view/<?= $a->special_id ?>"><?= $a->title ?></a>
- <?php if (isset($a->foreign_titles) || isset($a->alternative_titles)): ?>
- <span class="alt_titles">
- <?php if (isset($a->foreign_titles)): ?>
- <?= $a->foreign_titles[0] ?>
- <?php endif ?>
- <?php if (isset($a->alternative_titles)): ?>
-
- <?= $a->alternative_titles[0] ?>
- <?php endif ?>
- </span>
- <?php endif ?>
- </td>
- <td>
- <?= $a->aired ?>
- </td>
- <td>
- <?= $a->view_type ?>
- </td>
- </tr>
- <?php endforeach ?>
- </table>
|