mangatable.html.php 687 B

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