| 1234567891011121314151617181920212223242526272829 |
- <table>
- <th>Title</th>
- <th>Date</th>
- <th style="width: 200px">Type</th>
- <?php foreach ($manga as $m): ?>
- <tr>
- <td>
- <a href="/manga/view/<?= $m->special_id ?>"><?= $m->title ?></a>
- <?php if (isset($m->foreign_titles) || isset($m->alternative_titles)): ?>
- <span class="alt_titles">
- <?php if (isset($m->foreign_titles)): ?>
- <?= $m->foreign_titles[0] ?>
- <?php endif ?>
- <?php if (isset($m->alternative_titles)): ?>
-
- <?= $m->alternative_titles[0] ?>
- <?php endif ?>
- </span>
- <?php endif ?>
- </td>
- <td>
- <?= $m->publish_period ?>
- </td>
- <td>
- <?= $m->author ?>
- </td>
- </tr>
- <?php endforeach ?>
- </table>
|