animetable.html.php 674 B

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