animetable.html.php 632 B

1234567891011121314151617181920212223242526272829
  1. <table>
  2. <th>Title</th>
  3. <th>Date</th>
  4. <th>Type</th>
  5. <?php foreach ($anime as $a): ?>
  6. <tr>
  7. <td>
  8. <a href="/anime/view/<?= $a->special_id ?>"><?= $a->title ?></a>
  9. <?php if ($a->foreign_titles || $a->alternative_titles): ?>
  10. <span class="alt_titles">
  11. <?php if ($a->foreign_titles): ?>
  12. <?= $a->foreign_titles[0] ?>
  13. <?php endif ?>
  14. <?php if ($a->alternative_titles): ?>
  15. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  16. <?= $a->alternative_titles[0] ?>
  17. <?php endif ?>
  18. </span>
  19. <?php endif ?>
  20. </td>
  21. <td>
  22. <?= $a->aired ?>
  23. </td>
  24. <td>
  25. <?= $a->view_type ?>
  26. </td>
  27. </tr>
  28. <?php endforeach ?>
  29. </table>