mangatable.html.php 701 B

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